/* Auth pages (login, register) */
body.auth-page {
    background-color: var(--muted);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.auth-container {
    background: var(--background);
    border-radius: var(--radius);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    padding: 2rem;
    width: 100%;
    max-width: 400px;
}

.auth-container-split {
    max-width: 1000px;
    padding: 0;
    display: flex;
    flex-direction: row;
    overflow: hidden;
}

.auth-image {
    flex: 1;
    min-height: 500px;
    background: var(--muted);
    display: flex;
    align-items: center;
    justify-content: center;
}

.auth-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.auth-form {
    flex: 1;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

@media (max-width: 768px) {
    body.auth-page {
        padding: 0;
    }

    .auth-container-split {
        flex-direction: column;
        max-width: 100%;
        border-radius: 0;
        min-height: 100vh;
    }

    .auth-image {
        display: none;
    }

    .auth-form {
        padding: 2rem 1.5rem;
        min-height: 100vh;
    }
}

.auth-header {
    text-align: center;
    margin-bottom: 2rem;
}

.auth-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.auth-logo img {
    height: 48px;
    width: auto;
}

.auth-logo span {
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--foreground);
}

.auth-header p {
    color: var(--muted-foreground);
    font-size: 0.875rem;
}

.auth-footer {
    text-align: center;
    margin-top: 1.5rem;
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

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

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

.checkbox-group {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.checkbox-group input {
    width: auto;
}

.checkbox-group label {
    margin-bottom: 0;
    font-weight: normal;
}
