/* FrontBox PDV — Auth CSS */

.auth-body {
    min-height: 100vh;
    background: linear-gradient(135deg, #101828 0%, #1D2939 50%, #253347 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    position: relative;
}

.auth-body::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 30% 40%, rgba(70,95,255,0.15) 0%, transparent 60%);
    pointer-events: none;
}

.auth-wrapper {
    width: 100%;
    max-width: 440px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    position: relative;
    z-index: 1;
}

.auth-card {
    width: 100%;
    background: #fff;
    border-radius: 20px;
    padding: 40px 36px;
    box-shadow: 0 24px 64px rgba(0,0,0,0.25);
}

[data-theme="dark"] .auth-card {
    background: #1D2939;
    border: 1px solid #2D3E50;
}

.auth-logo {
    text-align: center;
    margin-bottom: 28px;
}

.auth-logo img { width: 52px; height: 52px; margin-bottom: 10px; }

.auth-logo h1 {
    font-size: 1.375rem;
    font-weight: 800;
    color: var(--text-primary, #101828);
    margin-bottom: 4px;
    letter-spacing: -0.5px;
}

.auth-subtitle { font-size: 0.875rem; color: var(--text-muted, #98A2B3); }

.auth-form { display: flex; flex-direction: column; gap: 18px; }

.auth-links {
    text-align: center;
    font-size: 0.875rem;
    color: var(--text-muted, #98A2B3);
    padding-top: 4px;
}

.auth-links a { color: var(--color-primary, #465FFF); font-weight: 500; }

.auth-footer { font-size: 0.8125rem; color: rgba(255,255,255,0.5); }
.auth-footer a { color: rgba(255,255,255,0.7); }

.input-password-wrapper { position: relative; display: flex; align-items: center; }
.input-password-wrapper .form-input { padding-right: 44px; }
.password-toggle {
    position: absolute; right: 12px;
    background: none; border: none; cursor: pointer;
    color: var(--text-muted, #98A2B3); font-size: 1rem;
    padding: 4px;
    transition: color 0.2s;
}
.password-toggle:hover { color: var(--color-primary, #465FFF); }

@media (max-width: 480px) {
    .auth-card { padding: 28px 24px; border-radius: 16px; }
    .auth-logo h1 { font-size: 1.2rem; }
}
