/* recuperacion.css - Mobile First */

/* Contenedor de la contraseña para que el ojo quede bien puesto */
.password-container {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    margin-bottom: 10px;
}

.password-container input {
    /*padding: 12px 45px 12px 15px; Espacio a la derecha para el ojo */
    border: 1px solid var(--color-textos-grandes) !important;
    border-radius: 8px;
    box-sizing: border-box;
    font-size: 1rem;
    width: 100% !important;
    padding-right: 45px !important; /* Espacio para el ojo */
    z-index: 1;
}

/* El icono del ojo */
#togglePass, #togglePassword {
    position: absolute;
    right: 12px;
    top: 50%;
    z-index: 100; /* Lo ponemos bien al frente */
    transform: translateY(-50%);
    cursor: pointer;
    color: #777;
    user-select: none;
    transition: color 0.3s;
    /*background: white; /* Por si el input se mete debajo */
    padding: 2px;
}

#togglePass:hover {
    color: var(--color-textos-grandes);
}

.captcha-simple {
    margin-bottom: 10px;
}

.captcha-simple label {
    text-align: start;
    font-size: 1.0rem;
    font-weight: 700;
}

.captcha-simple input {
    font-size: 2rem;
    width: 25px; height: 25px;
}


.forgot-pass-container a {
    display: table; /* Esto hace que el ancho sea EXACTAMENTE el de las letras */
    margin: -5px 0 20px 0; /* Margen arriba y abajo, alineado a la izquierda */
    text-decoration: none;
    color: #666;
    font-size: 0.9rem;
    /*width: auto; /* IMPORTANTE: para que no se extienda a los lados */
    cursor: pointer;
}

.forgot-pass:hover {
    text-decoration: underline;
    color: var(--color-textos-grandes);
}

.hp-v2 {
    position: absolute;
    left: -9999px; /* Lo mandamos a otra galaxia */
    top: auto;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

/* Ajustes para el subtítulo informativo */
.subtitle {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.4;
    margin-bottom: 25px;
    text-align: center;
}

/* Desktop */
@media (min-width: 1024px) {
    .auth-card {
        padding: 40px;
        max-width: 450px;
    }
}