/* ========================================
   AUTH PAGES - COMPACT SMART DESIGN
   LOGIN & SIGNUP
   ======================================== */

.auth-page-compact {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 2rem 3rem 2rem;
}

.auth-wrapper {
    max-width: 1000px;
    width: 100%;
    display: grid;
    grid-template-columns: 400px 1fr;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.8) 0%, rgba(20, 20, 20, 0.7) 100%);
    border: 2px solid rgba(255, 215, 0, 0.2);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

/* Left Panel - Info */
.auth-info-panel {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.15) 0%, rgba(255, 165, 0, 0.08) 100%);
    padding: 2.5rem 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-right: 2px solid rgba(255, 215, 0, 0.2);
}

.logo-large {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.auth-info-panel h2 {
    font-size: 1.8rem;
    color: #FFFFFF;
    margin-bottom: 0.8rem;
}

.auth-info-panel p {
    color: #CCCCCC;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.info-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: #FFFFFF;
    font-size: 0.95rem;
}

.info-icon {
    font-size: 1.5rem;
    filter: drop-shadow(0 2px 8px rgba(255, 215, 0, 0.4));
}

/* Right Panel - Form */
.auth-form-panel {
    padding: 2.5rem 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.form-header-compact {
    margin-bottom: 1.5rem;
}

.form-header-compact h3 {
    font-size: 1.6rem;
    color: #FFD700;
    margin-bottom: 0.3rem;
}

.form-header-compact p {
    color: #999;
    font-size: 0.85rem;
}

.auth-form-compact {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form-group {
    margin-bottom: 0;
}

.form-label {
    display: block;
    margin-bottom: 0.4rem;
    font-weight: 500;
    color: #CCCCCC;
    font-size: 0.85rem;
}

.form-input,
.form-textarea,
.form-select {
    width: 100%;
    padding: 0.7rem 1rem;
    background: rgba(26, 26, 26, 0.6);
    border: 1.5px solid rgba(255, 215, 0, 0.2);
    border-radius: 8px;
    color: #FFFFFF;
    font-size: 0.9rem;
    font-family: inherit;
    transition: all 0.3s ease;
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
    outline: none;
    border-color: #FFD700;
    box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.1);
}

.password-wrapper {
    position: relative;
}

.toggle-password {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    color: #999;
    cursor: pointer;
    font-size: 1.1rem;
    padding: 5px;
    transition: all 0.3s ease;
}

.toggle-password:hover {
    color: #FFD700;
}

.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #CCCCCC;
    cursor: pointer;
}

.checkbox-label input {
    accent-color: #FFD700;
}

.link-gold {
    color: #FFD700;
    text-decoration: none;
    transition: all 0.3s ease;
}

.link-gold:hover {
    text-decoration: underline;
}

.btn-full {
    width: 100%;
    padding: 0.8rem;
    font-size: 0.95rem;
}

.divider-or {
    text-align: center;
    position: relative;
    margin: 1rem 0;
}

.divider-or::before,
.divider-or::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 45%;
    height: 1px;
    background: rgba(255, 215, 0, 0.2);
}

.divider-or::before {
    left: 0;
}

.divider-or::after {
    right: 0;
}

.divider-or span {
    color: #999;
    background: transparent;
    padding: 0 1rem;
    font-size: 0.85rem;
}

.form-footer {
    text-align: center;
    margin-top: 1.5rem;
    color: #CCCCCC;
    font-size: 0.9rem;
}

.form-footer a {
    color: #FFD700;
    font-weight: 600;
    text-decoration: none;
}

.form-footer a:hover {
    text-decoration: underline;
}

.back-home {
    position: fixed;
    top: 2rem;
    left: 2rem;
    z-index: 100;
}

/* Password Strength */
.password-strength {
    margin-top: 0.5rem;
    font-size: 0.8rem;
}

.strength-bar {
    height: 4px;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 2px;
    margin-top: 0.3rem;
    overflow: hidden;
}

.strength-bar-fill {
    height: 100%;
    width: 0%;
    transition: all 0.3s ease;
}

.strength-weak { 
    width: 33%; 
    background: #ff4444; 
}

.strength-medium { 
    width: 66%; 
    background: #FFA500; 
}

.strength-strong { 
    width: 100%; 
    background: #4CAF50; 
}

.terms-text {
    font-size: 0.8rem;
    color: #AAAAAA;
    line-height: 1.5;
}

.terms-text a {
    color: #FFD700;
    text-decoration: none;
}

.terms-text a:hover {
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 992px) {
    .auth-wrapper {
        grid-template-columns: 1fr;
    }
    
    .auth-info-panel {
        border-right: none;
        border-bottom: 2px solid rgba(255, 215, 0, 0.2);
        padding: 2rem 1.5rem;
    }
    
    .auth-form-panel {
        padding: 2rem 1.5rem;
    }
}

@media (max-width: 768px) {
    .auth-page-compact {
        padding: 100px 1rem 1rem 1rem;
    }
    
    .auth-wrapper {
        border-radius: 16px;
    }
    
    .logo-large {
        font-size: 2rem;
    }
    
    .auth-info-panel h2 {
        font-size: 1.5rem;
    }
    
    .form-header-compact h3 {
        font-size: 1.4rem;
    }
}


