/* ==========================================================================
   printQ - AUTHENTICATION STYLES (LOGIN & REGISTRATION)
   ========================================================================== */

.auth-container {
    position: fixed;
    inset: 0;
    z-index: 999999;
    background: radial-gradient(circle at 50% 50%, rgba(15, 23, 42, 0.5) 0%, rgba(9, 12, 20, 0.75) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    font-family: var(--font-family);
    backdrop-filter: blur(8px);
}

.auth-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-xl);
    width: 960px;
    max-width: 100%;
    min-height: 560px;
    display: flex;
    overflow: hidden;
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255, 255, 255, 0.05) inset;
    backdrop-filter: blur(10px);
}

/* Auth Left: Information Pane */
.auth-left {
    flex: 1.1;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.9) 0%, rgba(29, 78, 216, 0.95) 100%), 
                url('https://images.unsplash.com/photo-1557683316-973673baf926?q=80&w=600&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    padding: 44px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    color: #ffffff;
    border-right: 1px solid rgba(255, 255, 255, 0.05);
}

.auth-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.auth-logo .logo-icon {
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.1);
}

.auth-info-content {
    margin: 40px 0;
}

.auth-info-content h2 {
    font-size: 28px;
    font-weight: 800;
    line-height: 1.25;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.auth-info-content p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 28px;
    font-weight: 500;
}

.auth-stats-badge {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 10px 16px;
    border-radius: 30px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 700;
}

.auth-stats-badge i {
    width: 14px;
    height: 14px;
    color: #34d399;
}

.auth-footer-text {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 600;
}

/* Auth Right: Forms Pane */
.auth-right {
    flex: 1;
    background: #0f172a;
    padding: 44px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.auth-tabs {
    display: flex;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-md);
    padding: 4px;
    margin-bottom: 28px;
}

.auth-tab {
    flex: 1;
    border: none;
    background: transparent;
    padding: 10px;
    font-family: var(--font-family);
    font-size: 13px;
    font-weight: 700;
    color: #94a3b8;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: all 0.2s ease;
}

.auth-tab.active {
    background: var(--accent-blue);
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(24, 89, 245, 0.3);
}

.auth-form {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.auth-form-title {
    font-size: 22px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 6px;
}

.auth-form-subtitle {
    font-size: 13px;
    color: #64748b;
    margin-bottom: 24px;
    font-weight: 600;
}

.auth-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 16px;
    text-align: left;
}

.auth-label {
    font-size: 11px;
    font-weight: 700;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.auth-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.auth-input-wrapper i {
    position: absolute;
    left: 12px;
    width: 16px;
    height: 16px;
    color: #64748b;
}

.auth-input-wrapper input {
    background: rgba(255, 255, 255, 0.02);
    border: 1.5px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-md);
    padding: 10px 14px 10px 36px;
    font-family: var(--font-family);
    font-size: 13px;
    font-weight: 600;
    color: #ffffff;
    outline: none;
    width: 100%;
    transition: all 0.2s ease;
}

.auth-input-wrapper input:focus {
    background: rgba(255, 255, 255, 0.04);
    border-color: var(--accent-blue);
    box-shadow: 0 0 0 3px rgba(24, 89, 245, 0.15);
}

.auth-checkbox-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.auth-checkbox-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: #94a3b8;
    cursor: pointer;
    font-weight: 600;
}

.auth-checkbox-label input {
    width: 15px;
    height: 15px;
    border-radius: 4px;
    accent-color: var(--accent-blue);
}

.auth-link-forgot {
    font-size: 11px;
    font-weight: 700;
    color: var(--accent-blue);
    text-decoration: none;
}

.auth-link-forgot:hover {
    text-decoration: underline;
}

.auth-submit-btn {
    width: 100%;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 800;
    border-radius: var(--radius-md);
    box-shadow: 0 4px 14px rgba(24, 89, 245, 0.3);
}

.auth-demo-notice {
    margin-top: 20px;
    padding: 12px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px dashed rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    font-size: 11px;
    color: #64748b;
    text-align: center;
    line-height: 1.4;
}

.auth-demo-notice code {
    background: rgba(255, 255, 255, 0.08);
    color: #cbd5e1;
    padding: 2px 5px;
    border-radius: 4px;
    font-family: monospace;
}

/* Responsive adjustment */
@media (max-width: 768px) {
    .auth-card {
        flex-direction: column;
        width: 100%;
        max-width: 440px;
        min-height: auto;
    }
    .auth-left {
        display: none;
    }
    .auth-right {
        padding: 28px;
    }
}

/* Shop Name Suggestion Badges */
.suggestions-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 8px;
    margin-bottom: 4px;
    animation: fadeIn 0.2s ease-out;
}

.suggestion-badge {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #cbd5e1;
    padding: 5px 10px;
    border-radius: var(--radius-sm, 6px);
    font-size: 11px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    user-select: none;
    display: inline-flex;
    align-items: center;
}

.suggestion-badge:hover {
    background: var(--accent-blue, #1859f5);
    border-color: var(--accent-blue, #1859f5);
    color: #ffffff;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(24, 89, 245, 0.25);
}

.suggestion-badge:active {
    transform: translateY(0);
}

