/* AI-Header: Unauthenticated layout structure and theming */
/* Date: 2025-07-13 */

/* ===========================================
   UNAUTHENTICATED LAYOUT - BASE STRUCTURE
   =========================================== */

/* Main layout container */
.minimal-auth-layout {
    min-height: 100vh;
    background: #280101; /* burgundy red dark */
    color: #ffffff;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* Auth container */
.dark-auth-container {
    background: transparent;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 1rem;
    position: relative;
}

/* Auth card container */
.auth-card {
    background: #470000;
    border: 1px solid #5a0000;
    border-radius: 8px;
    padding: 3rem;
    width: 100%;
    max-width: 480px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 1;
}

/* ===========================================
   BRAND COMPONENTS
   =========================================== */

/* Brand header */
.brand-header {
    background: #470000;
    border-radius: 12px 12px 0 0;
    padding: 2rem 1rem 1rem 1rem;
    text-align: center;
    margin-bottom: 1.5rem;
}

/* Logo image */
.arrparty-logo-img {
    width: 150px;
    height: 150px;
    object-fit: contain;
    border-radius: 12px;
}

/* Brand icon */
.brand-icon {
    width: 80px;
    height: 80px;
    background: #ff9500;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
}

/* Brand title */
.brand-title {
    color: #ffffff;
    font-size: 2rem;
    font-weight: 600;
    margin: 0 0 0.75rem;
    letter-spacing: -0.02em;
}

/* Brand subtitle */
.brand-subtitle {
    color: #9ca3af;
    font-size: 0.875rem;
    margin: 0;
    font-weight: 400;
}

/* ===========================================
   NAVIGATION LINKS
   =========================================== */

/* Additional options section */
.additional-options {
    text-align: center;
    margin-bottom: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid #374151;
}

/* Navigation links for auth pages */
.forgot-password-link, 
.help-link, 
.login-link, 
.terms-link, 
.enterprise-link, 
.signup-link {
    color: #ff8a8a;
    text-decoration: none;
    font-weight: 500;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 0.9rem;
    transition: color 0.2s ease;
}

.forgot-password-link:hover, 
.help-link:hover, 
.login-link:hover, 
.terms-link:hover, 
.enterprise-link:hover, 
.signup-link:hover {
    color: #ffb3b3;
    text-decoration: underline;
}

/* ===========================================
   MOBILE RESPONSIVENESS
   =========================================== */

@media (max-width: 768px) {
    .dark-auth-container {
        padding: 1rem 0.5rem;
    }
    
    .auth-card {
        padding: 2rem 1.5rem;
        max-width: 100%;
        margin: 0 0.5rem;
    }
    
    .brand-title {
        font-size: 1.75rem;
    }
    
    .arrparty-logo-img {
        width: 120px;
        height: 120px;
    }
}

@media (max-width: 480px) {
    .auth-card {
        padding: 1.5rem 1rem;
    }
    
    .brand-title {
        font-size: 1.5rem;
    }
    
    .arrparty-logo-img {
        width: 100px;
        height: 100px;
    }
}
