/* ==========================================================================
   Auth Pages (Login, Register, etc.)
   ========================================================================== */

body.auth-page {
    background-color: var(--bg-color);
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.auth-container {
    width: 100%;
    max-width: 450px;
    padding: 20px;
}

.auth-card {
    background: var(--bg-secondary-color);
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.auth-header {
    text-align: center;
    margin-bottom: 30px;
}

.auth-header img {
    height: 50px;
    margin: 0 auto 10px;
}

.auth-links {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
}
