@CHARSET "ISO-8859-1";
body {
			background: linear-gradient(lightgray,white);
		
  font-family: 'Inter', sans-serif;
  font-size: 16px;
}
	
		footer {
			background-color: black;
			color:white;
			font-size: 10pt;
			padding-top: 2em;
		}
		
#MsgReg{
	color: green;
	padding-top:.35em;
	margin-left: auto;
	margin-right: auto;

}
 
.my-error-class {
    color:red;
}
.my-valid-class {
    color:blue;

}

.g-recaptcha{
transform: scale(0.64); 
transform-origin: 0% 0%;

-webkit-transform:scale(0.66);
-webkit-transform-origin:10% 0;

-ms-transform:scale(0.76);
-ms-transform-origin: 20% 40%;

margin-left: auto  !important;
margin-right: auto  !important;

}

#capatcha {
    margin: auto auto;
    width: 88%;
}

.borde {
border-radius: 10px;
-moz-border-radius: 10px;
-webkit-border-radius: 10px;
}
div.verde {
    box-shadow: 10px 7px 10px green;
}

   
            .imagen {
    box-shadow: 10px 7px 10px green;
}
ul {
    padding: 0; /* Removes default padding */
    padding-left: 1em;
    margin: 0; /* Removes default margin */
	  font-size: 14px;

}
.ListaCursos 
{
    padding: 0; /* Removes default padding */
    padding-left: 1em;
    margin: 0; /* Removes default margin */
	  font-size: 16px;

}


        .navbar {
        border-radius: 0px;
}

      
  /* The cool floating bubble - bottom-left */
  .message-bubble {
    position: fixed;
    bottom: 30px;
    left: 30px;
    background: linear-gradient(145deg, #1a1f35, #0f1428);
    color: #e0e6ff;
    padding: 16px 24px;
    border-radius: 20px 20px 20px 4px;
    font-size: 15px;
    font-weight: 500;
    max-width: 320px;
    box-shadow: 
      0 15px 40px rgba(0, 0, 0, 0.7),
      0 0 0 1px rgba(100, 200, 255, 0.15),
      inset 0 1px 0 rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(100, 200, 255, 0.12);
    display: flex;
    align-items: center;
    gap: 14px;
    z-index: 999;
    animation: floatGlow 3s ease-in-out infinite, slideIn 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
    transform-origin: bottom left;
  }

  /* Icon / emoji circle */
  .message-bubble .icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #00d4ff, #7b2ffc);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(0, 212, 255, 0.3);
  }

  /* Text */
  .message-bubble .text {
    line-height: 1.4;
  }
  .message-bubble .text .highlight {
    color: #00d4ff;
    font-weight: 600;
  }
  .message-bubble .text .small {
    font-size: 12px;
    opacity: 0.6;
    display: block;
    margin-top: 2px;
  }

  /* Glowing pulse ring */
  .message-bubble::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 22px 22px 22px 4px;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.3), rgba(123, 47, 252, 0.2));
    z-index: -1;
    filter: blur(8px);
    animation: pulseRing 3s ease-in-out infinite;
  }

  /* Animations */
  @keyframes floatGlow {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-6px); }
  }

  @keyframes pulseRing {
    0%, 100% { opacity: 0.5; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.05); }
  }

  @keyframes slideIn {
    0% { opacity: 0; transform: translateX(-60px) scale(0.9); }
    100% { opacity: 1; transform: translateX(0) scale(1); }
  }

  /* Close button (optional) */
  .message-bubble .close-btn {
    position: absolute;
    top: -8px;
    right: -8px;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: none;
    background: #2a2f4a;
    color: #8892b0;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.4);
    border: 1px solid rgba(255,255,255,0.06);
  }
  .message-bubble .close-btn:hover {
    background: #ff4d6d;
    color: #fff;
    transform: scale(1.1);
  }

  /* Background demo content */
  .demo-content {
    color: #ffffff33;
    font-size: 14px;
    text-align: center;
       letter-spacing: 2px;
  }