/* recoverpass.css — solo estilos únicos de esta vista */
/* Los estilos comunes están en auth-common.css          */

.title { 
    font-size: 28px; 
}

h4 { 
    font-size: 18px; 
    margin-bottom: 8px; 
}

.texto {
    color: #555;
    font-size: 16px;
    line-height: 1.5;
}

.btn-enviar {
    background: #2E9DB9;
    color: white;
    border-radius: 6px;
    font-size: 16px;
    padding: 8px 20px;
    width: 100%;
    margin-top: 15px;
    border: none;
    box-shadow: none;
    outline: none;
}
.btn-enviar:hover { 
    background: #238da5; 
}

.btn-enviar:focus,
.btn-enviar:active,
.btn-enviar:focus-visible {
    box-shadow: none !important;
    outline: none !important;
}

.btn-enviar:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

a {
    text-decoration: none;
}

