/* Auth Pages Styles */

.auth-page {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background: linear-gradient(135deg, #fff59d 0%, #fff9c4 50%, #ffffff 100%);
}

/* Auth Navbar */
.auth-navbar {
    padding: 24px 32px;
}

.auth-navbar .logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--color-primary);
    font-weight: 700;
    font-size: 18px;
}

/* Auth Container */
.auth-container {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 24px;
}

.auth-box {
    background: var(--color-white);
    border-radius: var(--radius-xl);
    padding: 48px;
    width: 100%;
    max-width: 420px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.auth-box h1 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--color-primary);
}

.auth-subtitle {
    font-size: 15px;
    color: var(--color-gray-500);
    margin-bottom: 32px;
}

/* Auth Buttons */
.auth-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 24px;
}

.auth-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    padding: 14px 20px;
    border-radius: var(--radius-full);
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
    border: none;
    background: var(--color-gray-100);
    color: var(--color-primary);
}

.auth-btn:hover {
    background: var(--color-gray-200);
    transform: translateY(-1px);
}

.auth-btn svg {
    flex-shrink: 0;
}

.auth-btn-google {
    background: var(--color-white);
    border: 1px solid var(--color-gray-200);
}

.auth-btn-google:hover {
    background: var(--color-gray-50);
    border-color: var(--color-gray-300);
}

.auth-btn-github {
    background: var(--color-primary);
    color: var(--color-white);
}

.auth-btn-github:hover {
    background: var(--color-gray-800);
}

/* Auth Divider */
.auth-divider {
    position: relative;
    margin: 24px 0;
}

.auth-divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--color-gray-200);
}

.auth-divider span {
    position: relative;
    display: inline-block;
    padding: 0 16px;
    background: var(--color-white);
    font-size: 14px;
    color: var(--color-gray-400);
}

/* Auth Terms */
.auth-terms {
    font-size: 13px;
    color: var(--color-gray-500);
    line-height: 1.5;
}

.auth-terms a {
    color: var(--color-primary);
    text-decoration: none;
    font-weight: 500;
}

.auth-terms a:hover {
    text-decoration: underline;
}

/* Auth Switch */
.auth-switch {
    margin-top: 24px;
    font-size: 15px;
    color: var(--color-gray-600);
}

.auth-switch a {
    color: var(--color-primary);
    text-decoration: none;
    font-weight: 600;
}

.auth-switch a:hover {
    text-decoration: underline;
}

/* Auth Footer */
.auth-footer {
    padding: 24px;
    text-align: center;
}

.auth-footer p {
    font-size: 13px;
    color: var(--color-gray-400);
}

/* Responsive */
@media (max-width: 480px) {
    .auth-navbar {
        padding: 20px 24px;
    }

    .auth-box {
        padding: 32px 24px;
    }

    .auth-box h1 {
        font-size: 24px;
    }

    .auth-container {
        padding: 24px;
    }
}
