/* ========================================
   AUTH-STYLES.CSS - Estilos Unificados de Autenticação
   Baseado em /css/cliente/login.css
   Reutilizável em /minha-conta e /reserva
   ======================================== */

/* Forçar Font Awesome a renderizar corretamente */
.fas, .far, .fab, .fa {
    font-family: 'Font Awesome 6 Free', 'Font Awesome 6 Brands', 'Font Awesome 6 Pro' !important;
    font-weight: 900 !important;
    font-style: normal !important;
    font-variant: normal !important;
    text-rendering: auto !important;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Variáveis CSS */
:root {
    --auth-primary: #7B5FBD;
    --auth-primary-hover: #6a4fa8;
    --auth-primary-light: #9f84d4;
    --auth-success: #52C41A;
    --auth-danger: #FF4D4F;
    --auth-warning: #FF9F43;
    --auth-info: #5B9BD5;
    --auth-dark: #1f2937;
    --auth-gray: #6b7280;
    --auth-gray-light: #e5e7eb;
    --auth-light: #f9fafb;
    --auth-white: #ffffff;
    --auth-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
    --auth-shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.15);
}

/* ========================================
   BODY E BACKGROUND
   ======================================== */
body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* ========================================
   HEADER SIMPLES
   ======================================== */
.header-simple {
    background: rgba(255, 255, 255, 0.98);
    padding: 1rem 0;
    box-shadow: var(--auth-shadow);
    backdrop-filter: blur(10px);
}

.header-simple .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-simple .logo {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--auth-primary);
    text-decoration: none;
    transition: transform 0.3s ease;
    background-image: none !important;
    width: auto;
    height: auto;
}

.header-simple .logo:hover {
    transform: scale(1.05);
}

.header-simple .logo img {
    height: 45px;
    width: auto;
    object-fit: contain;
}

.header-simple .logo i {
    font-size: 1.75rem;
}

/* ========================================
   CONTAINER PRINCIPAL
   ======================================== */
.auth-container {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    padding-top: calc(var(--header-height, 70px) + 2rem);
    gap: 2.5rem;
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
}

/* ========================================
   BOX DE AUTENTICAÇÃO
   ======================================== */
.auth-unified-container {
    width: 100%;
    max-width: 560px;
}

.auth-unified-box {
    background: var(--auth-white);
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    padding: 2.5rem;
    box-sizing: border-box;
}

.auth-unified-box * {
    max-width: 100%;
    box-sizing: border-box;
}

/* Cabeçalho */
.auth-unified-header {
    text-align: center;
    margin-bottom: 2rem;
}

.auth-unified-header h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--auth-dark);
    margin-bottom: 0.5rem;
}

.auth-unified-header p {
    font-size: 1rem;
    color: var(--auth-gray);
    margin: 0;
}

/* ========================================
   TABS DE ALTERNÂNCIA
   ======================================== */
.auth-unified-tabs {
    display: flex;
    gap: 0;
    margin-bottom: 2rem;
    border-bottom: 2px solid var(--auth-gray-light);
    position: relative;
}

.auth-unified-tab {
    flex: 1;
    padding: 1rem;
    border: none;
    background: transparent;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    color: var(--auth-gray);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    border-bottom: 3px solid transparent;
    /* Garantir clicabilidade no mobile */
    -webkit-tap-highlight-color: rgba(123, 95, 189, 0.2);
    touch-action: manipulation;
    user-select: none;
    position: relative;
    z-index: 10;
}

.auth-unified-tab i {
    font-size: 1.1rem;
}

.auth-unified-tab.active {
    color: var(--auth-primary);
    border-bottom-color: var(--auth-primary);
}

.auth-unified-tab:hover:not(.active) {
    color: var(--auth-primary-light);
    background: var(--auth-light);
}

/* ========================================
   FORMULÁRIOS - MATERIAL DESIGN
   ======================================== */
.auth-unified-form {
    width: 100%;
}

/* Seção de Endereço */
.auth-unified-section {
    margin: 2.5rem 0 1rem 0;
    padding-top: 2.5rem;
    border-top: 2px solid var(--auth-gray-light);
}

.auth-unified-section h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--auth-dark);
    margin: 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.auth-unified-section h3 i {
    color: var(--auth-primary);
    font-size: 1.25rem;
}

/* Seção Colapsável de Endereço */
.auth-section-collapsible {
    margin-bottom: 0;
}

.auth-section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 0;
    background: transparent;
    border: none;
    cursor: pointer;
    transition: opacity 0.2s ease;
    gap: 0.75rem;
}

.auth-section-header:hover {
    opacity: 0.8;
}

.auth-section-header h3 {
    margin: 0;
    pointer-events: none;
    flex: 1;
    text-align: left;
    order: 1;
}

.auth-section-arrow {
    color: var(--auth-primary);
    font-size: 1rem;
    transition: transform 0.3s ease;
    flex-shrink: 0;
    order: 2;
    margin-left: auto;
}

.auth-section-arrow.rotated {
    transform: rotate(180deg);
}

.auth-section-collapsible.open {
    margin-bottom: 1rem;
}

/* Container dos campos de endereço */
.auth-endereco-fields {
    animation: slideDown 0.3s ease-out;
    padding-top: 1rem;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ========================================
   FORM GROUP - MATERIAL DESIGN
   ======================================== */
.auth-form-group {
    position: relative;
    margin-bottom: 1.75rem;
}

/* Ícone fixo - SEMPRE CINZA e SEMPRE NO MESMO LUGAR */
.auth-form-group .auth-icon {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #9ca3af;
    font-size: 18px;
    pointer-events: none;
    z-index: 1;
    width: 20px;
    text-align: center;
    font-family: 'Font Awesome 6 Free', 'Font Awesome 6 Brands' !important;
    font-weight: 900 !important;
    font-style: normal !important;
    font-variant: normal !important;
    text-rendering: auto !important;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    speak: none;
}

/* Ícone NÃO muda de cor no foco - sempre cinza */

/* Input estilizado */
.auth-form-group input {
    width: 100%;
    height: 56px;
    padding: 16px 16px 16px 48px;
    border: 1px solid #d1d5db;
    border-radius: 4px;
    font-size: 16px;
    font-family: 'Poppins', sans-serif;
    transition: all 0.2s ease-out;
    background: var(--auth-white);
    color: var(--auth-dark);
    box-sizing: border-box;
}

.auth-form-group input::placeholder {
    color: transparent;
}

.auth-form-group input:focus {
    outline: none;
    border: 2px solid var(--auth-primary);
    padding-left: 47px;
}

/* Label flutuante */
.auth-form-group label {
    position: absolute;
    left: 48px;
    top: 50%;
    transform: translateY(-50%);
    font-weight: 400;
    font-size: 16px;
    color: #6b7280;
    pointer-events: none;
    transition: all 0.2s ease-out;
    background-color: transparent;
    padding: 0 4px;
    white-space: nowrap;
    z-index: 2;
}

.auth-form-group input:focus + label,
.auth-form-group input:not([value=""]) + label {
    top: 0;
    left: 44px;
    transform: translateY(-50%);
    font-size: 12px;
    color: var(--auth-primary);
    background-color: var(--auth-white);
    font-weight: 500;
}

.auth-form-group input:not([value=""]):not(:focus) + label {
    color: #6b7280;
}

/* Estado disabled */
.auth-form-group input:disabled {
    background: var(--auth-light);
    cursor: not-allowed;
    opacity: 0.6;
}

/* Botão de toggle de senha */
.auth-form-group .toggle-password {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    color: #9ca3af;
    font-size: 18px;
    cursor: pointer;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.2s ease-out;
    z-index: 10; /* Aumentado para garantir que fique acima de tudo */
    -webkit-tap-highlight-color: transparent; /* Remove highlight no mobile */
    touch-action: manipulation; /* Melhora resposta ao toque */
}

.auth-form-group .toggle-password:hover {
    color: #6b7280;
}

.auth-form-group .toggle-password:focus {
    outline: none;
    color: var(--auth-primary);
}

.auth-form-group .toggle-password:active {
    transform: translateY(-50%) scale(0.95);
}

.auth-form-group .toggle-password i {
    font-family: 'Font Awesome 6 Free', 'Font Awesome 6 Brands' !important;
    font-weight: 900 !important;
    font-style: normal !important;
    pointer-events: none; /* Garante que o clique passe para o button */
}

/* Ajuste no padding do input quando tem toggle button */
.auth-form-group input[type="password"],
.auth-form-group input.has-toggle {
    padding-right: 52px;
}

/* ========================================
   FORM ROW (2 COLUNAS)
   ======================================== */
.auth-form-row {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 1rem;
    margin-bottom: 1.75rem;
}

.auth-form-row.equal {
    grid-template-columns: 1fr 1fr;
}

.auth-form-row .auth-form-group {
    margin-bottom: 0;
}

/* ========================================
   CHECKBOX LGPD
   ======================================== */
.auth-checkbox-group {
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
}

.auth-checkbox-group::before {
    display: none;
}

.auth-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
    padding: 1rem;
    background: var(--auth-light);
    border-radius: 10px;
    transition: background 0.3s ease;
}

.auth-checkbox:hover {
    background: #f3f4f6;
}

.auth-checkbox input[type="checkbox"] {
    width: 20px;
    height: 20px;
    min-width: 20px;
    margin-top: 2px;
    cursor: pointer;
    accent-color: var(--auth-primary);
}

.auth-checkbox span {
    flex: 1;
    font-size: 0.875rem;
    line-height: 1.6;
    color: var(--auth-gray);
}

.auth-checkbox strong {
    color: var(--auth-dark);
    font-weight: 600;
}

/* ========================================
   BOTÕES
   ======================================== */
.auth-btn-submit {
    width: 100%;
    padding: 1rem;
    background: var(--auth-primary);
    color: var(--auth-white);
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.625rem;
    margin-top: 1.5rem;
    font-family: 'Poppins', sans-serif;
    box-shadow: var(--auth-shadow);
}

.auth-btn-submit:hover {
    background: var(--auth-primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(123, 95, 189, 0.35);
}

.auth-btn-submit:active {
    transform: translateY(0);
}

.auth-btn-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

/* Estado de Loading do Botão */
.auth-btn-submit.loading {
    pointer-events: none;
    opacity: 0.8;
    cursor: not-allowed;
}

.auth-btn-submit.loading i.fas {
    display: none;
}

.auth-btn-submit .btn-spinner {
    display: inline-block;
    width: 18px;
    height: 18px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top-color: #ffffff;
    border-radius: 50%;
    animation: btn-spin 0.8s linear infinite;
    vertical-align: middle;
    margin-right: 0.5rem;
}

@keyframes btn-spin {
    to { transform: rotate(360deg); }
}

.auth-btn-submit i {
    font-size: 1.125rem;
}

.auth-btn-secondary {
    padding: 0.875rem 1.25rem;
    background: var(--auth-gray);
    color: var(--auth-white);
    border: none;
    border-radius: 10px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.9375rem;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
    box-shadow: var(--auth-shadow);
}

.auth-btn-secondary:hover {
    background: #4b5563;
    transform: translateY(-1px);
}

/* ========================================
   LINK DE CADASTRO/LOGIN
   ======================================== */
.auth-link-toggle {
    text-align: center;
    margin-top: 1.5rem;
    font-size: 0.9375rem;
    color: var(--auth-gray);
}

.auth-link-toggle button {
    background: none;
    border: none;
    color: var(--auth-primary);
    cursor: pointer;
    text-decoration: underline;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    font-size: 0.9375rem;
    padding: 0;
    transition: color 0.3s ease;
}

.auth-link-toggle button:hover {
    color: var(--auth-primary-hover);
}

/* ========================================
   BENEFÍCIOS
   ======================================== */
.auth-benefits {
    background: rgba(255, 255, 255, 0.98);
    border-radius: 24px;
    padding: 2.5rem;
    max-width: 420px;
    width: 100%;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(10px);
}

.auth-benefits h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--auth-dark);
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.auth-benefits h3 i {
    color: var(--auth-warning);
    font-size: 1.75rem;
}

.auth-benefits ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
}

.auth-benefits li {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.auth-benefits li > i {
    color: var(--auth-success);
    font-size: 1.5rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.auth-benefits li > div {
    flex: 1;
}

.auth-benefits strong {
    display: block;
    color: var(--auth-dark);
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 0.375rem;
}

.auth-benefits p {
    color: var(--auth-gray);
    font-size: 0.875rem;
    line-height: 1.5;
    margin: 0;
}

/* ========================================
   LOADING OVERLAY
   ======================================== */
.loading-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.75);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 1.25rem;
    backdrop-filter: blur(5px);
}

.loading-overlay.active {
    display: flex;
}

.spinner {
    width: 60px;
    height: 60px;
    border: 5px solid rgba(255, 255, 255, 0.2);
    border-top-color: var(--auth-white);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.loading-overlay p {
    color: var(--auth-white);
    font-size: 1.125rem;
    font-weight: 500;
}

/* ========================================
   LOADING STATE NO INPUT
   ======================================== */
.auth-form-group input.loading {
    background-image: linear-gradient(
        90deg,
        var(--auth-white) 0%,
        var(--auth-light) 50%,
        var(--auth-white) 100%
    );
    background-size: 200% 100%;
    animation: loading 1.5s ease-in-out infinite;
    opacity: 0.7;
}

@keyframes loading {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* ========================================
   RESPONSIVIDADE - TABLETS
   ======================================== */
@media (max-width: 992px) {
    .auth-container {
        flex-direction: column;
        padding: 1.5rem;
        padding-top: calc(var(--header-height, 70px) + 1.5rem);
    }

    .auth-unified-container {
        max-width: 600px;
    }

    .auth-benefits {
        max-width: 600px;
    }
}

/* ========================================
   RESPONSIVIDADE - MOBILE
   ======================================== */
@media (max-width: 768px) {
    .header-simple .container {
        padding: 0 1rem;
    }

    .header-simple .logo {
        font-size: 1.25rem;
    }

    .auth-unified-box {
        padding: 2rem 1.5rem;
    }

    .auth-unified-header h2 {
        font-size: 1.75rem;
    }

    .auth-form-row {
        grid-template-columns: 1fr;
    }

    .auth-form-row.equal {
        grid-template-columns: 1fr;
    }

    .auth-unified-tab {
        font-size: 0.875rem;
        padding: 0.875rem 0.5rem;
    }

    .auth-benefits {
        padding: 2rem 1.5rem;
    }
}

@media (max-width: 576px) {
    .auth-container {
        padding: 1rem;
        padding-top: calc(var(--header-height, 70px) + 1rem);
    }

    .auth-unified-box {
        border-radius: 12px;
        padding: 1.5rem 1rem;
    }

    .auth-unified-header h2 {
        font-size: 1.5rem;
    }

    .auth-unified-tab i {
        display: none;
    }

    .auth-form-group input {
        font-size: 16px; /* Evita zoom no iOS */
    }

    .auth-benefits {
        display: none;
    }

    /* Espaçamento da seção de endereço em mobile */
    .auth-unified-section {
        margin: 2rem 0 0.75rem 0;
        padding-top: 2rem;
    }

    .auth-section-header h3 {
        font-size: 1rem;
    }
}

/* ========================================
   ANIMAÇÕES
   ======================================== */
.auth-unified-form {
    animation: fadeIn 0.4s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ========================================
   RECAPTCHA - Google reCAPTCHA Responsivo
   Centralizado em relação ao formulário
   ======================================== */

.recaptcha-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 1.5rem 0;
    padding: 0.5rem;
    width: 100%;
}

/* Centralizar o container interno do reCAPTCHA */
.recaptcha-wrapper > div {
    display: flex !important;
    justify-content: center !important;
    margin: 0 auto !important;
}

/* Mobile - Reduzir para caber melhor em telas pequenas */
@media (max-width: 480px) {
    .recaptcha-wrapper {
        margin: 1rem 0;
        padding: 0;
        min-height: 65px;
    }

    .recaptcha-wrapper > div {
        transform: scale(0.85);
        transform-origin: center center;
    }
}

/* Tablet pequeno */
@media (min-width: 481px) and (max-width: 768px) {
    .recaptcha-wrapper {
        margin: 1.25rem 0;
    }

    .recaptcha-wrapper > div {
        transform: scale(0.95);
        transform-origin: center center;
    }
}

/* Desktop */
@media (min-width: 769px) {
    .recaptcha-wrapper {
        margin: 1.5rem 0;
    }

    .recaptcha-wrapper > div {
        transform: scale(0.9);
        transform-origin: center center;
    }
}

/* ========================================
   ACESSIBILIDADE
   ======================================== */
*:focus-visible {
    outline: 2px solid var(--auth-primary);
    outline-offset: 2px;
}

/* ========================================
   MODAL ESQUECI SENHA
   ======================================== */
.auth-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease-out;
}

.auth-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
}

.auth-modal-content {
    position: relative;
    background: var(--auth-white);
    border-radius: 16px;
    box-shadow: var(--auth-shadow-lg);
    width: 90%;
    max-width: 500px;
    max-height: 90vh;
    overflow-y: auto;
    animation: slideUp 0.3s ease-out;
    z-index: 10001;
}

.auth-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    border-bottom: 1px solid var(--auth-gray-light);
}

.auth-modal-header h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--auth-dark);
    margin: 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.auth-modal-header h3 i {
    color: var(--auth-primary);
}

.auth-modal-close {
    background: transparent;
    border: none;
    font-size: 1.5rem;
    color: var(--auth-gray);
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 50%;
    transition: all 0.2s ease;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.auth-modal-close:hover {
    background: var(--auth-gray-light);
    color: var(--auth-dark);
}

.auth-modal-body {
    padding: 2rem;
}

.auth-modal-text {
    font-size: 0.95rem;
    color: var(--auth-gray);
    margin: 0 0 1.5rem 0;
    line-height: 1.6;
}

/* Animações do modal */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsividade do modal */
@media (max-width: 768px) {
    .auth-modal-content {
        width: 95%;
        max-width: none;
        margin: 1rem;
    }

    .auth-modal-header {
        padding: 1.25rem 1.5rem;
    }

    .auth-modal-header h3 {
        font-size: 1.1rem;
    }

    .auth-modal-body {
        padding: 1.5rem;
    }

    .auth-modal-text {
        font-size: 0.9rem;
    }
}

/* ========================================
   REQUISITOS DE SENHA
   ======================================== */
.auth-password-requirements {
    background: var(--auth-light);
    border: 1px solid var(--auth-gray-light);
    border-radius: 8px;
    padding: 12px 16px;
    margin: -8px 0 16px 0;
    opacity: 0.7;
    transition: all 0.3s ease;
}

.auth-password-requirements.visible {
    opacity: 1;
}

.auth-password-requirements .requirements-title {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--auth-dark);
    margin: 0 0 8px 0;
    display: flex;
    align-items: center;
    gap: 6px;
}

.auth-password-requirements .requirements-title i {
    color: var(--auth-primary);
    font-size: 0.9rem;
}

.auth-password-requirements .requirements-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px;
}

.auth-password-requirements .requirement {
    font-size: 0.8rem;
    color: var(--auth-gray);
    display: flex;
    align-items: center;
    gap: 6px;
    transition: color 0.2s ease;
}

.auth-password-requirements .requirement i {
    font-size: 0.7rem;
    transition: color 0.2s ease;
}

.auth-password-requirements .requirement.valid {
    color: var(--auth-success);
}

.auth-password-requirements .requirement.valid i {
    color: var(--auth-success);
}

.auth-password-requirements .requirement.invalid {
    color: var(--auth-gray);
}

/* Responsivo para requisitos de senha */
@media (max-width: 480px) {
    .auth-password-requirements .requirements-list {
        grid-template-columns: 1fr;
    }
}