/* Auth Pages Specific Styles */
.auth-container {
    display: flex;
    min-height: calc(100vh - 60px);
    /* 100vh - header-height */
    align-items: center;
    justify-content: center;
    padding: 16px;
    /* spacing-md */
}

.auth-card {
    background-color: #ffffff;
    /* surface-color */
    padding: 24px;
    /* spacing-lg */
    border-radius: 8px;
    /* border-radius */
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    width: 100%;
    max-width: 400px;
}

.auth-title {
    font-size: 1.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 24px;
    /* spacing-lg */
}

.auth-footer {
    margin-top: 16px;
    /* spacing-md */
    text-align: center;
    font-size: 0.875rem;
    color: #6b7280;
    /* text-light */
}

.auth-footer a {
    color: #3b82f6;
    /* primary-color */
    font-weight: 500;
}