body.auth-page {
    background-color: #f5f5f5;
    font-family: 'Inter', sans-serif;
}

.auth-body {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.auth-card {
    background: #fff;
    padding: 40px;
    border-radius: 18px;
    width: 100%;
    max-width: 420px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.auth-logo {
    text-align: center;
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 10px;
}

.auth-header {
    text-align: center;
    margin-bottom: 25px;
}

.auth-btn {
    background: #000;
    color: #fff;
    padding: 12px;
    border-radius: 30px;
    border: none;
    font-weight: 600;
}

.auth-btn:hover {
    background: #111;
}

.otp-input {
    width: 55px;
    height: 55px;
    text-align: center;
    font-size: 1.4rem;
    font-weight: 600;
    border-radius: 12px;
}

.auth-logo {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 8px;
}

.auth-header h2 {
    font-size: 20px;
    /* ✅ standard auth size */
    font-weight: 600;
    line-height: 1.3;
}

.auth-header p {
    font-size: 13px;
}

a.google-btn {
    width: 100%;
    height: 52px;
    border-radius: 999px;
    border: 1px solid #e4e4e7;
    background: #ffffff;
    color: #000;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-decoration: none;
}

a.google-btn:hover {
    background: #f4f4f5;
    border-color: #000;
}



/* --- Toast Notifications (Synced from style.css) --- */
#toast-container {
    position: fixed;
    top: 24px;
    right: 24px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 12px;
    pointer-events: none;
}

#toast-container {
    position: fixed;
    top: 24px;
    right: 24px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 12px;
    pointer-events: none;
}

.toast {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    padding: 16px 20px;
    min-width: 300px;
    max-width: 400px;
    display: flex;
    align-items: center;
    gap: 14px;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.08),
        0 4px 10px -2px rgba(0, 0, 0, 0.04);
    pointer-events: auto;
    animation: toast-slide-in 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
    transition: all 0.3s ease;
}

.toast.hiding {
    animation: toast-slide-out 0.4s cubic-bezier(0.6, -0.28, 0.735, 0.045) forwards;
}

.toast-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    flex-shrink: 0;
}

.toast-success .toast-icon {
    background-color: #ecfdf5;
    color: #10b981;
}

.toast-error .toast-icon {
    background-color: #fef2f2;
    color: #ef4444;
}

.toast-info .toast-icon {
    background-color: #eff6ff;
    color: #3b82f6;
}

.toast-warning .toast-icon {
    background-color: #fffbeb;
    color: #f59e0b;
}

.toast-content {
    flex: 1;
}

.toast-message {
    font-size: 0.9rem;
    font-weight: 500;
    color: #18181b;
    margin: 0;
}

.toast-close {
    background: none;
    border: none;
    padding: 0;
    color: #a1a1aa;
    cursor: pointer;
    transition: color 0.2s;
}

.toast-close:hover {
    color: #3f3f46;
}

@keyframes toast-slide-in {
    from {
        opacity: 0;
        transform: translateX(100px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes toast-slide-out {
    from {
        opacity: 1;
        transform: translateX(0);
    }

    to {
        opacity: 0;
        transform: translateX(100px);
    }
}