/* === RESET E CONFIGURAÇÕES GLOBAIS === */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Cores principais */
    --primary-brown: #8B4513;
    --primary-brown-dark: #6B3410;
    --primary-brown-light: #A0522D;
    
    --gray-50: #FAFAFA;
    --gray-100: #F5F5F5;
    --gray-200: #E5E5E5;
    --gray-300: #D4D4D4;
    --gray-400: #A3A3A3;
    --gray-500: #737373;
    --gray-600: #525252;
    --gray-700: #404040;
    --gray-800: #262626;
    --gray-900: #171717;
    
    --success: #16A34A;
    --success-light: #DCFCE7;
    --error: #DC2626;
    --error-light: #FEE2E2;
    --warning: #D97706;
    --info: #2563EB;
}

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: var(--gray-50);
    color: var(--gray-900);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    position: relative;
    touch-action: pan-y pan-x;
    -webkit-user-select: none;
    -webkit-touch-callout: none;
    -webkit-tap-highlight-color: transparent;
}

/* Background animado */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(135deg, transparent 0%, rgba(139, 69, 19, 0.03) 100%),
        radial-gradient(circle at 20% 30%, rgba(139, 69, 19, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(139, 69, 19, 0.06) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

/* === LAYOUT PRINCIPAL === */
.auth-container {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    min-height: 100vh;
    position: relative;
    z-index: 1;
}

/* === PAINEL DE INFORMAÇÕES (ESQUERDA) === */
.info-panel {
    background: linear-gradient(135deg, var(--primary-brown) 0%, var(--primary-brown-dark) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 3rem;
    position: relative;
    overflow: hidden;
}

/* Decorações de fundo */
.info-panel::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80%;
    height: 150%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: floatBackground 20s ease-in-out infinite;
    pointer-events: none;
}

.info-panel::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -15%;
    width: 60%;
    height: 100%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 60%);
    animation: floatBackground 15s ease-in-out infinite reverse;
    pointer-events: none;
}

@keyframes floatBackground {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(30px, -30px) scale(1.05); }
}

.info-content {
    max-width: 520px;
    position: relative;
    z-index: 2;
    animation: fadeInUp 0.8s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Brand Section */
.brand-section {
    margin-bottom: 4rem;
}

.brand-logo {
    height: 50px;
    width: auto;
    margin-bottom: 2rem;
    filter: brightness(0) invert(1);
    animation: fadeIn 0.6s ease-out;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.brand-title {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(32px, 5vw, 42px);
    font-weight: 800;
    color: white;
    margin-bottom: 1rem;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.brand-description {
    font-size: clamp(16px, 2vw, 18px);
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    font-weight: 300;
}

/* Features List */
.features-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.feature-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    animation: fadeInLeft 0.8s ease-out;
    animation-fill-mode: both;
}

.feature-item:nth-child(1) { animation-delay: 0.2s; }
.feature-item:nth-child(2) { animation-delay: 0.3s; }
.feature-item:nth-child(3) { animation-delay: 0.4s; }

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.feature-item:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateX(5px);
}

.feature-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
}

.feature-text h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: white;
    margin-bottom: 0.5rem;
    letter-spacing: -0.3px;
}

.feature-text p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    font-weight: 300;
}

/* === PAINEL DE FORMULÁRIOS (DIREITA) === */
.forms-panel {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem 2rem;
    position: relative;
    background: white;
}

.form-wrapper {
    width: 100%;
    max-width: 480px;
    animation: fadeInRight 0.8s ease-out;
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Mobile Logo */
.mobile-logo {
    display: none;
    text-align: center;
    margin-bottom: 2rem;
}

.mobile-brand-logo {
    height: 50px;
    width: auto;
}

/* Tabs Navigation */
.form-tabs {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 2.5rem;
    padding: 6px;
    background: var(--gray-100);
    border-radius: 16px;
    position: relative;
}

.tab-button {
    flex: 1;
    padding: 14px 20px;
    font-family: 'Outfit', sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: var(--gray-600);
    background: transparent;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
    letter-spacing: -0.2px;
}

.tab-button:hover {
    color: var(--gray-900);
}

.tab-button.active {
    color: var(--primary-brown);
    background: white;
    box-shadow: 
        0 2px 8px rgba(139, 69, 19, 0.08),
        0 1px 3px rgba(0, 0, 0, 0.06);
}

/* Forms */
.auth-form {
    display: none;
}

.auth-form.active {
    display: block;
    animation: formFadeIn 0.4s ease-out;
}

@keyframes formFadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.form-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.form-title h2 {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(28px, 4vw, 36px);
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: 0.5rem;
    letter-spacing: -0.5px;
}

.form-title p {
    font-size: 15px;
    color: var(--gray-600);
    font-weight: 400;
}

/* Messages */
.messages {
    padding: 14px 16px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 500;
    display: none;
    align-items: center;
    gap: 10px;
    animation: slideDown 0.3s ease-out;
    position: relative;
    overflow: hidden;
}

.messages::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: currentColor;
    opacity: 0.5;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.messages.show {
    display: flex;
}

.messages.success {
    background: var(--success-light);
    color: var(--success);
    border: 1px solid rgba(22, 163, 74, 0.2);
}

.messages.error {
    background: var(--error-light);
    color: var(--error);
    border: 1px solid rgba(220, 38, 38, 0.2);
}

.messages.info {
    background: rgba(37, 99, 235, 0.1);
    color: var(--info);
    border: 1px solid rgba(37, 99, 235, 0.2);
}

.messages i {
    font-size: 16px;
    animation: iconPop 0.4s ease-out;
}

@keyframes iconPop {
    0% {
        transform: scale(0);
    }
    50% {
        transform: scale(1.2);
    }
    100% {
        transform: scale(1);
    }
}

/* Form Fields */
.form-fields {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.field-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.field-group label {
    font-size: 14px;
    font-weight: 600;
    color: var(--gray-800);
    letter-spacing: -0.1px;
}

.input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.input-wrapper input {
    width: 100%;
    padding: 14px 16px 14px 48px;
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    font-weight: 400;
    color: var(--gray-900);
    background: var(--gray-50);
    border: 2px solid var(--gray-200);
    border-radius: 12px;
    transition: all 0.3s ease;
    outline: none;
}

.input-wrapper input::placeholder {
    color: var(--gray-400);
    font-weight: 300;
}

.input-wrapper input:focus {
    background: white;
    border-color: var(--primary-brown);
    box-shadow: 
        0 0 0 4px rgba(139, 69, 19, 0.08),
        0 2px 8px rgba(0, 0, 0, 0.04);
}

.input-wrapper input:hover:not(:focus) {
    border-color: var(--gray-300);
}

.field-icon {
    position: absolute;
    left: 16px;
    font-size: 16px;
    color: var(--gray-400);
    pointer-events: none;
    transition: color 0.3s ease;
}

.input-wrapper input:focus ~ .field-icon {
    color: var(--primary-brown);
}

.toggle-password {
    position: absolute;
    right: 14px;
    background: none;
    border: none;
    color: var(--gray-400);
    cursor: pointer;
    padding: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border-radius: 6px;
}

.toggle-password:hover {
    color: var(--gray-700);
    background: var(--gray-100);
}

.toggle-password i {
    font-size: 16px;
}

/* Password Strength */
.password-strength {
    margin-top: 8px;
}

.strength-bar {
    height: 4px;
    background: var(--gray-200);
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 6px;
}

.strength-fill {
    height: 100%;
    width: 0%;
    background: var(--gray-300);
    transition: all 0.3s ease;
    border-radius: 4px;
}

.strength-fill.weak {
    width: 33%;
    background: var(--error);
}

.strength-fill.medium {
    width: 66%;
    background: var(--warning);
}

.strength-fill.strong {
    width: 100%;
    background: var(--success);
}

.strength-text {
    font-size: 13px;
    color: var(--gray-500);
    font-weight: 500;
}

.strength-text.weak {
    color: var(--error);
}

.strength-text.medium {
    color: var(--warning);
}

.strength-text.strong {
    color: var(--success);
}

/* Form Options */
.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.checkbox-container {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    user-select: none;
}

.checkbox-container input[type="checkbox"] {
    display: none;
}

.checkbox-custom {
    width: 20px;
    height: 20px;
    min-width: 20px;
    border: 2px solid var(--gray-300);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    background: var(--gray-50);
}

.checkbox-container:hover .checkbox-custom {
    border-color: var(--primary-brown);
}

.checkbox-container input[type="checkbox"]:checked ~ .checkbox-custom {
    background: var(--primary-brown);
    border-color: var(--primary-brown);
}

.checkbox-container input[type="checkbox"]:checked ~ .checkbox-custom::after {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: white;
    font-size: 11px;
}

.checkbox-label {
    font-size: 14px;
    color: var(--gray-700);
    font-weight: 500;
}

.forgot-link {
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-brown);
    text-decoration: none;
    transition: all 0.3s ease;
    letter-spacing: -0.1px;
}

.forgot-link:hover {
    color: var(--primary-brown-dark);
    text-decoration: underline;
}

/* Submit Button */
.submit-btn {
    width: 100%;
    padding: 16px 24px;
    font-family: 'Outfit', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: white;
    background: linear-gradient(135deg, var(--primary-brown) 0%, var(--primary-brown-dark) 100%);
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    letter-spacing: -0.2px;
    box-shadow: 
        0 4px 12px rgba(139, 69, 19, 0.25),
        0 2px 4px rgba(0, 0, 0, 0.1);
}

.submit-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 
        0 6px 16px rgba(139, 69, 19, 0.35),
        0 3px 6px rgba(0, 0, 0, 0.12);
}

.submit-btn:hover::before {
    left: 100%;
}

.submit-btn:active {
    transform: translateY(0);
}

.submit-btn.loading {
    pointer-events: none;
}

.btn-content {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: opacity 0.3s ease;
}

.submit-btn.loading .btn-content {
    opacity: 0;
}

.btn-loader {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.submit-btn.loading .btn-loader {
    opacity: 1;
}

.spinner {
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-top-color: white;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Terms Text */
.terms-text {
    text-align: center;
    font-size: 13px;
    color: var(--gray-500);
    line-height: 1.6;
}

.terms-text a {
    color: var(--primary-brown);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.terms-text a:hover {
    color: var(--primary-brown-dark);
    text-decoration: underline;
}

/* === MODAL DE RECUPERAÇÃO === */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    padding: 1rem;
    animation: fadeInModal 0.3s ease-out;
}

.modal-overlay.active {
    display: flex;
}

@keyframes fadeInModal {
    from { opacity: 0; }
    to { opacity: 1; }
}

.modal-container {
    width: 100%;
    max-width: 520px;
    background: white;
    border-radius: 24px;
    padding: 2.5rem;
    position: relative;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.3),
        0 10px 30px rgba(0, 0, 0, 0.2);
    animation: modalSlideUp 0.4s ease-out;
}

@keyframes modalSlideUp {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.modal-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 36px;
    height: 36px;
    background: var(--gray-100);
    border: none;
    border-radius: 10px;
    color: var(--gray-600);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    font-size: 16px;
}

.modal-close:hover {
    background: var(--gray-200);
    color: var(--gray-900);
    transform: rotate(90deg);
}

.modal-header {
    text-align: center;
    margin-bottom: 2rem;
}

.modal-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--primary-brown) 0%, var(--primary-brown-dark) 100%);
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 28px;
    margin-bottom: 1.5rem;
    box-shadow: 
        0 8px 20px rgba(139, 69, 19, 0.25),
        0 4px 8px rgba(0, 0, 0, 0.1);
}

.modal-title {
    font-family: 'Outfit', sans-serif;
    font-size: 28px;
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: 0.5rem;
    letter-spacing: -0.5px;
}

.modal-subtitle {
    font-size: 15px;
    color: var(--gray-600);
    line-height: 1.6;
}

.modal-body {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.modal-step {
    display: none;
}

.modal-step.active {
    display: block;
    animation: stepFadeIn 0.4s ease-out;
}

@keyframes stepFadeIn {
    from {
        opacity: 0;
        transform: translateX(20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Step Indicator */
.step-indicator {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 2rem;
}

.step-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--gray-200);
    color: var(--gray-500);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 700;
    transition: all 0.3s ease;
}

.step-number.active {
    background: linear-gradient(135deg, var(--primary-brown) 0%, var(--primary-brown-dark) 100%);
    color: white;
    box-shadow: 0 4px 12px rgba(139, 69, 19, 0.3);
    transform: scale(1.1);
}

.step-number.completed {
    background: var(--success);
    color: white;
}

.step-line {
    width: 50px;
    height: 3px;
    background: var(--gray-200);
    border-radius: 3px;
    transition: all 0.3s ease;
}

.step-line.completed {
    background: var(--success);
}

.step-description {
    font-size: 14px;
    color: var(--gray-600);
    text-align: center;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.step-description strong {
    color: var(--primary-brown);
    font-weight: 700;
}

.modal-messages {
    padding: 12px 16px;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 500;
    display: none;
    align-items: center;
    gap: 8px;
    position: relative;
    overflow: hidden;
    animation: slideDown 0.3s ease-out;
}

.modal-messages::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: currentColor;
    opacity: 0.5;
}

.modal-messages.show {
    display: flex;
}

.modal-messages.success {
    background: var(--success-light);
    color: var(--success);
    border: 1px solid rgba(22, 163, 74, 0.2);
}

.modal-messages.error {
    background: var(--error-light);
    color: var(--error);
    border: 1px solid rgba(220, 38, 38, 0.2);
}

.modal-messages i {
    font-size: 14px;
    animation: iconPop 0.4s ease-out;
}

.field-hint {
    font-size: 13px;
    color: var(--gray-500);
    margin-top: 6px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.field-hint::before {
    content: '\f05a';
    font-family: 'Font Awesome 6 Free';
    font-weight: 400;
    font-size: 12px;
}

.modal-btn {
    width: 100%;
    padding: 16px 24px;
    font-family: 'Outfit', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: white;
    background: linear-gradient(135deg, var(--primary-brown) 0%, var(--primary-brown-dark) 100%);
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 4px 12px rgba(139, 69, 19, 0.25),
        0 2px 4px rgba(0, 0, 0, 0.1);
}

.modal-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.modal-btn:hover {
    transform: translateY(-2px);
    box-shadow: 
        0 6px 16px rgba(139, 69, 19, 0.35),
        0 3px 6px rgba(0, 0, 0, 0.12);
}

.modal-btn:hover::before {
    left: 100%;
}

.modal-btn:active {
    transform: translateY(0);
}

.modal-btn.loading {
    pointer-events: none;
}

.modal-btn-secondary {
    width: 100%;
    padding: 14px 24px;
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: var(--gray-700);
    background: var(--gray-100);
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 0.5rem;
}

.modal-btn-secondary:hover {
    background: var(--gray-200);
    color: var(--gray-900);
}

.modal-btn-secondary i {
    font-size: 14px;
}

/* === RESPONSIVE === */
@media (max-width: 1024px) {
    .auth-container {
        grid-template-columns: 1fr;
    }
    
    .info-panel {
        display: none;
    }
    
    .mobile-logo {
        display: block;
    }
    
    .forms-panel {
        padding: 2rem 1.5rem;
    }
    
    .form-wrapper {
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .forms-panel {
        padding: 1.5rem 1rem;
    }
    
    .form-tabs {
        padding: 4px;
        gap: 4px;
    }
    
    .tab-button {
        padding: 12px 16px;
        font-size: 14px;
    }
    
    .form-title h2 {
        font-size: 24px;
    }
    
    .submit-btn {
        padding: 14px 20px;
        font-size: 15px;
    }
    
    .modal-container {
        padding: 2rem 1.5rem;
    }
    
    .modal-title {
        font-size: 24px;
    }
    
    .step-indicator {
        gap: 8px;
    }
    
    .step-number {
        width: 36px;
        height: 36px;
        font-size: 14px;
    }
    
    .step-line {
        width: 30px;
    }
}

/* Smooth scroll */
html {
    scroll-behavior: smooth;
}

/* Focus styles para acessibilidade */
button:focus-visible,
input:focus-visible,
a:focus-visible {
    outline: 3px solid rgba(139, 69, 19, 0.4);
    outline-offset: 2px;
}

/* === PAINEL DE ACESSO RÁPIDO === */
.quick-access-panel {
    animation: formFadeIn 0.4s ease-out;
}

.saved-logins-container {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 20px;
}

.saved-login-card {
    background: white;
    border: 2px solid var(--gray-200);
    border-radius: 16px;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.saved-login-card:hover {
    border-color: var(--primary-brown);
    background: linear-gradient(135deg, rgba(139, 69, 19, 0.02) 0%, rgba(139, 69, 19, 0.05) 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(139, 69, 19, 0.1);
}

.saved-login-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    background: linear-gradient(135deg, var(--primary-brown), var(--primary-brown-dark));
    display: flex;
    align-items: center;
    justify-content: center;
}

.saved-login-avatar-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.saved-login-avatar-initials {
    color: white;
    font-size: 22px;
    font-weight: 700;
    font-family: 'Outfit', sans-serif;
}

.saved-login-info {
    flex: 1;
    min-width: 0;
}

.saved-login-info h3 {
    font-size: 16px;
    font-weight: 600;
    color: var(--gray-900);
    margin: 0 0 4px 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.saved-login-info p {
    font-size: 14px;
    color: var(--gray-500);
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.btn-remove-login {
    width: 32px;
    height: 32px;
    border: none;
    background: var(--gray-100);
    border-radius: 8px;
    color: var(--gray-500);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.2s ease;
    opacity: 0;
}

.saved-login-card:hover .btn-remove-login {
    opacity: 1;
}

.btn-remove-login:hover {
    background: var(--error-light);
    color: var(--error);
    transform: scale(1.1);
}

.btn-add-new-login {
    width: 100%;
    padding: 16px;
    border: 2px dashed var(--gray-300);
    background: transparent;
    border-radius: 12px;
    color: var(--gray-600);
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.btn-add-new-login:hover {
    border-color: var(--primary-brown);
    color: var(--primary-brown);
    background: rgba(139, 69, 19, 0.02);
}

.btn-add-new-login i {
    font-size: 18px;
}

/* Responsivo */
@media (max-width: 768px) {
    .saved-login-card {
        padding: 14px 16px;
    }
    
    .saved-login-avatar {
        width: 48px;
        height: 48px;
    }
    
    .saved-login-avatar-initials {
        font-size: 18px;
    }
    
    .saved-login-info h3 {
        font-size: 15px;
    }
    
    .saved-login-info p {
        font-size: 13px;
    }
    
    .btn-remove-login {
        opacity: 1;
    }
}
