/* --- [AUTH PAGE STYLES] ---
  This file styles the main container for the
  login and register pages.
*/

.auth-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    width: 100%;
    
    /* Use the light-grey background for the whole page */
    background-color: var(--bg-secondary); 
    
    /* Add some padding for small screens */
    padding: var(--spacing-md);
    box-sizing: border-box;
}

/* Header logo (e.g., "Parking Manager") */
.auth-header {
    margin-bottom: var(--spacing-lg);
}

.auth-logo {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    text-decoration: none;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
}

.auth-logo img {
    height: 32px;
}

/* The main white card */
.auth-card {
    width: 100%;
    max-width: 420px; /* Standard width for auth forms */
    
    background-color: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    
    padding: var(--spacing-lg) var(--spacing-xl);
    box-sizing: border-box;
}

.auth-title {
    text-align: center;
    margin-top: 0;
    margin-bottom: var(--spacing-sm);
    color: var(--text-primary);
}

.auth-subtitle {
    text-align: center;
    margin-top: 0;
    margin-bottom: var(--spacing-lg);
    color: var(--text-secondary);
}

/* Footer link (e.g., "Don't have an account?") */
.auth-footer {
    text-align: center;
    margin-top: var(--spacing-lg);
    font-size: 0.875rem;
    color: var(--text-secondary);
}

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

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



