/* Auth Screen */
.auth-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
}

.auth-card {
    position: relative;
    width: 100%;
    max-width: 800px;
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    border-radius: 32px;
    padding: 120px 30px 60px 30px;
    box-shadow: var(--shadow);
    text-align: center;
    animation: fadeIn 0.8s ease-out;
}

.auth-subtitle {
    color: var(--text-muted);
    margin-bottom: 30px;
    font-size: 0.95rem;
}

.auth-form {
    text-align: left;
    margin: 0 auto 24px auto;
    max-width: 500px;
}

.auth-buttons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 24px;
}

.auth-divider {
    position: relative;
    text-align: center;
    margin: 24px auto;
    max-width: 500px;
}

.auth-divider::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 1px;
    background: rgba(0, 0, 0, 0.05);
}

.auth-divider span {
    position: relative;
    background: #fdfdfd;
    padding: 0 12px;
    color: var(--text-muted);
    font-size: 0.85rem;
}

.google-btn {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    background: white;
    color: #475569;
    border: 1px solid #e2e8f0;
    justify-content: center;
    font-weight: 500;
}

.google-btn img {
    width: 18px;
    height: 18px;
}

@media (max-width: 1024px) {
    .auth-container {
        padding: 0;
        width: 100%;
        min-height: 100vh;
        display: block;
    }

    .auth-card {
        width: 100% !important;
        max-width: none !important;
        margin: 0 !important;
        border-radius: 0 !important;
        padding: 120px 20px 60px 20px;
        border: none !important;
        box-shadow: none !important;
        min-height: 100vh;
    }

    .auth-buttons {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .auth-form {
        max-width: none !important;
        margin: 0 auto 30px auto;
    }

    .google-btn {
        max-width: none !important;
    }
}
