/* ========== Auth Layout Styles ========== */

/* Body layout for sticky footer */
body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* Auth Header */
.auth-header {
    background: var(--light-bg);
    border-bottom: 1px solid var(--border-color);
    padding: var(--spacing-md) 0;
    flex-shrink: 0;
}

.auth-header-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-md);
}

.auth-logo {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

.auth-site-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0;
}

/* Main content area */
main {
    flex: 1;
    display: flex;
    flex-direction: column;
    min-height: 0;
}

/* Auth Footer */
.auth-footer {
    background: var(--light-secondary);
    border-top: 1px solid var(--border-color);
    padding: var(--spacing-lg) 0;
    flex-shrink: 0;
    margin-top: auto;
}

.auth-footer .container {
    text-align: center;
}

.auth-footer-copyright {
    margin: 0;
    color: var(--text-secondary);
    font-size: 0.875rem;
    text-align: center;
}

/* Responsive Design */
@media (max-width: 767.98px) {
    .auth-logo {
        width: 50px;
        height: 50px;
    }
    
    .auth-site-title {
        font-size: 1.25rem;
    }
}
