/* apps/usuarios/static/usuarios/css/recuperacao_senha.css */

.auth-recovery-page .auth-recovery-wrapper {
    position: relative;
    z-index: 1;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 48px 24px;
}

.auth-recovery-card {
    width: 100%;
    max-width: 420px;
    animation: cardFloat 6s ease-in-out infinite;
}

.auth-back-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
}

.auth-recovery-invalid {
    margin-bottom: 24px;
}

.auth-recovery-btn-link {
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    margin-bottom: 8px;
}

.alert-success {
    background: rgba(112, 246, 17, 0.1);
    color: #70f611;
    border: 1px solid rgba(112, 246, 17, 0.3);
}

.auth-step--hidden {
    display: none;
}

.auth-recovery-nome {
    font-size: 0.875rem;
    color: var(--text-muted, #b8c4d9);
    text-align: center;
    margin-bottom: 20px;
    line-height: 1.45;
}

.auth-back-cpf {
    display: block;
    width: 100%;
    margin-top: 14px;
    background: none;
    border: none;
    cursor: pointer;
    font-family: inherit;
}

.auth-senha-requisitos {
    list-style: none;
    padding: 12px 14px;
    margin: 0 0 18px;
    font-size: 0.8125rem;
    color: var(--text-muted, #b8c4d9);
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
}

.auth-senha-requisitos li {
    margin: 4px 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.auth-senha-requisitos li::before {
    content: '○';
    color: rgba(184, 196, 217, 0.7);
    font-size: 0.7rem;
}

.auth-senha-requisitos li.is-ok {
    color: #70f611;
}

.auth-senha-requisitos li.is-ok::before {
    content: '●';
    color: #70f611;
}

.auth-senha-meter {
    height: 4px;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.08);
    margin: 0 0 14px;
    overflow: hidden;
}

.auth-senha-meter__bar {
    height: 100%;
    width: 0%;
    border-radius: 4px;
    background: #ff8a95;
    transition: width 0.2s ease, background 0.2s ease;
}

.auth-senha-meter__bar.is-weak { width: 25%; background: #ff8a95; }
.auth-senha-meter__bar.is-fair { width: 50%; background: #f0c14b; }
.auth-senha-meter__bar.is-good { width: 75%; background: #0bd5f0; }
.auth-senha-meter__bar.is-strong { width: 100%; background: #70f611; }
