.auth-page {
    padding: 4rem 0;
    min-height: calc(100vh - 300px); /* Adjust based on header/footer */
}

.auth__card {
    max-width: 500px;
    margin: 0 auto;
    background-color: var(--color-surface);
    border: 1px solid var(--color-border);
    padding: 2.5rem;
    border-radius: var(--radius-lg);
}

.auth__title {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--color-gold);
    text-align: center;
    margin-bottom: 1.5rem;
    letter-spacing: 0.05em;
}

.auth__form-group {
    margin-bottom: 1.5rem;
}

.auth__form-label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--color-text);
}

.auth__form-input {
    width: 100%;
    padding: 0.875rem 1rem;
    background-color: transparent;
    border: 1px solid var(--color-border);
    color: var(--color-text);
    border-radius: var(--radius-md);
    outline: none;
    transition: border-color 0.3s ease;
}

.auth__form-input:focus {
    border-color: var(--color-gold);
}

.auth__error {
    color: #ef4444;
    font-size: 0.875rem;
    margin-top: 0.5rem;
}

.auth__submit {
    margin-top: 1rem;
    width: 100%;
}

.auth__google-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    padding: 0.875rem;
    background-color: #ffffff;
    color: #333333;
    border: 1px solid #cccccc;
    border-radius: var(--radius-md);
    font-weight: 500;
    text-decoration: none;
    transition: background-color 0.3s ease;
    margin-bottom: 1.5rem;
}

.auth__google-btn:hover {
    background-color: #f3f4f6;
}

.auth__divider {
    display: flex;
    align-items: center;
    text-align: center;
    margin: 1.5rem 0;
    color: var(--color-text-muted);
}

.auth__divider::before,
.auth__divider::after {
    content: '';
    flex: 1;
    border-bottom: 1px solid var(--color-border);
}

.auth__divider:not(:empty)::before {
    margin-right: .25em;
}

.auth__divider:not(:empty)::after {
    margin-left: .25em;
}

.auth__links {
    text-align: center;
    margin-top: 1.5rem;
    font-size: 0.9rem;
}

.auth__link {
    color: var(--color-gold);
    text-decoration: none;
}

.auth__link:hover {
    text-decoration: underline;
}
