body {
    background-color: #2E3B4E;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    font-family: Arial, sans-serif;
    color: #000000;
}

.center-container{
    display: flex;
    flex-direction: column;
    align-items: center;
    
}


.container {
    background-color: #FFFFFF;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    width: 300px;
    text-align: center;
    align-items: center;
}

.logo { 
    margin-top: 1%;
    padding-bottom: 1%;
    padding: 2rem;
    border-radius: 10px;
    width: 300px;
}

.logo img {
    width: 100%
}



.signin-form {
    display: flex;
    flex-direction: column;
}

.signin-form h2 {
    margin-bottom: 1rem;
    color: #000000;
}

.input-group {
    margin-bottom: 1rem;
}

.input-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #000000;
}

.input-group input[type="email"],
.input-group input[type="text"],
.input-group input[type="tel"],
.input-group input[type="password"] {
    width: 100%;
    padding: 0.5rem;
    border: 1px solid #ccc;
    border-radius: 5px;
}


.iti {
    width: 100%; /* Ocupar todo el ancho del contenedor padre */
    max-width: 300px; /* Limitar ancho mÃ¡ximo */
    position: relative; /* Para posicionar correctamente elementos internos */
}

.iti__input {
    width: calc(100% - 60px); /* Resta el espacio de la bandera mÃ¡s un pequeÃ±o margen */
    padding-left: 65px; /* Ajusta espacio para la bandera */
    font-size: 16px; /* TamaÃ±o de texto */
    line-height: 50px; /* Alinea verticalmente el texto */
  
    box-sizing: border-box; /* Incluye padding y borde dentro del tamaÃ±o total */
}

.input-group input[type="checkbox"] {
    margin-right: 0.5rem;
}

button {
    background-color: #28A745;
    color: #FFFFFF;
    padding: 0.5rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

button:hover {
    background-color: #218838;
}

.links {
    margin-top: 1rem;
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
}

.links a {
    color: #007BFF;
    text-decoration: none;
}

.links a:hover {
    text-decoration: underline;
}

.hidden{
    display: none;
}
#info-pass,#info-pass1,#info-pass2{
    color: red;
}
.password-container {
    position: relative;
    width: 100%;
}

.password-container input[type="password"] {
    width: 89%;
    padding: 0.5rem;
    padding-right: 2.5rem; /* Ajusta el padding derecho para dejar espacio para el Ã­cono */
    border: 1px solid #ccc;
    border-radius: 5px;
   /* Incluye el padding y el border en el ancho total */
}
.password-container .show-password-icon {
    position: absolute;
    top: 50%;
    right: 1px; 
    transform: translateY(-50%);
    cursor: pointer;
    font-size: 20px;
    color: #333;
}
/*DISEÃ‘O DEL OVELAY DE VERIFICACION DE WHATSAPP*/

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}
.overlay.hidden {
    display: none;
}

/*http://localhost/Calendar/index.php*/
.overlay-content {
    background: #FFFFFF;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    color: #000;
}


.code-inputs {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.code-input {
    width: 2rem;
    height: 2rem;
    font-size: 1.5rem;
    text-align: center;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.overlay button {
    background-color: #28A745;
    color: #FFFFFF;
    padding: 0.5rem 1rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.overlay button:hover {
    background-color: #218838;
}

.password-requirements {
    border: 1px solid #ccc;
    padding: 10px;
    margin-top: 10px;
    border-radius: 5px;
    background-color: #f9f9f9;
}

.requirement {
    color: #999;
    font-size: 14px;
}
.p{
    color: #000000;
}
.requirement.valid {
    color: #28a745;
    font-weight: bold;
}

.promotion-banner {
    background-color: #43a72a; /* Amarillo llamativo */
    color: #000; /* Contraste con el texto negro */
    padding: 1rem;
    border-radius: 10px;
    text-align: center;
    margin-bottom: 10.5px; /* Separación del formulario */
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.2); /* Sombra para resaltar */
}

.promotion-banner h2 {
    font-size: 1.5rem;
    margin: 0;
    font-weight: bold;
}

.promotion-banner {
    
    width: 70%; /* Cambia el ancho a 80% del contenedor */
    max-width: 700px; /* Establece un máximo de 500px */
    margin: 0 auto; /* Centra el cuadro */
}

.promotion-banner p {
    font-size: 1rem;
    margin: 0.5rem 0 0;
    font-weight: 400;
}
.blink {
    animation: blink-animation 1s steps(2, start) infinite; /* Parpadeo continuo */
    color: #000000; /* Color llamativo */
    font-weight: bold;
}

/* Definimos la animación */
@keyframes blink-animation {
    from {
        visibility: visible;
    }
    to {
        visibility: hidden;
    }
}
