/* Auth Layout Styles */

.auth-page {
    min-height: 100vh;
}

.auth-main {
    min-height: calc(100vh - 80px);
}

/* Auth Header */
.auth-header {
    position: relative;
    z-index: 100;
    background: #ffffff;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.auth-header-status-bar {
    display: none;
    padding: 0.5rem 1rem;
    background: #ffffff;
    border-bottom: 1px solid #e5e7eb;
    font-size: 0.875rem;
    color: #1f2937;
}

.status-bar-time {
    font-weight: 500;
}

.status-bar-icons {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-left: auto;
}

.status-icon {
    font-size: 1rem;
}

.auth-header-nav {
    padding: 1rem 2rem;
    background: #ffffff;
}

.auth-header-content {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: var(--spacing-lg) 0;
    max-width: 1200px;
    margin: 0 auto;
}

.auth-logo {
    max-height: 60px;
    width: auto;
    height: auto;
    object-fit: contain;
}

@media (max-width: 767px) {
    .auth-logo {
        max-height: 50px;
    }
    
    .auth-header-content {
        padding: var(--spacing-md) 0;
    }
}


.auth-header-logo a {
    font-size: 1.5rem;
    font-weight: 700;
    color: #8b5cf6;
    text-decoration: none;
    letter-spacing: -0.02em;
}

.auth-header-logo a:hover {
    color: #7c3aed;
}

/* Mobile Status Bar */
@media (max-width: 768px) {
    .auth-header-status-bar {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .auth-header-nav {
        padding: 1rem;
    }

    .auth-header-logo a {
        font-size: 1.25rem;
    }
}

/* Auth Page Specific Styles */
.auth-page-content {
    display: flex;
    flex-direction: column;
    min-height: calc(100vh - 80px);
}

/* Responsive */
@media (max-width: 480px) {
    .auth-header-nav {
        padding: 0.75rem 1rem;
    }
}
