/**
 * Arise Pulse - Auth & Login Stylesheet
 */

:root {
    --arise-navy: #152a4e;
    --arise-navy-dark: #0b1526;
    --arise-orange: #e8622c;
    --arise-orange-subtle: rgba(232, 98, 44, 0.12);
}

body {
    min-height: 100vh;
    background-color: #f4f6f9;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    margin: 0;
}

[data-bs-theme="dark"] body {
    background-color: #0b1526;
}

.login-wrapper {
    width: 100%;
    min-height: 100vh;
    display: flex;
}

.login-hero-side {
    flex: 1.1;
    background: linear-gradient(135deg, #0b1526 0%, #152a4e 50%, #1a3563 100%);
    color: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 3.5rem;
    position: relative;
    overflow: hidden;
}

.login-hero-side::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(232, 98, 44, 0.2) 0%, transparent 70%);
    border-radius: 50%;
}

.login-hero-side::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: -80px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(21, 42, 78, 0.6) 0%, transparent 70%);
    border-radius: 50%;
}

.login-form-side {
    flex: 0.9;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem 2rem;
    position: relative;
}

[data-bs-theme="dark"] .login-form-side {
    background: #111e38;
}

.login-card {
    width: 100%;
    max-width: 430px;
}

.brand-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: linear-gradient(135deg, #e8622c 0%, #ff8e5a 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.3rem;
    box-shadow: 0 4px 15px rgba(232, 98, 44, 0.35);
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.feature-icon-box {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    color: var(--arise-orange);
    flex-shrink: 0;
}

.badge-support {
    background: rgba(232, 98, 44, 0.15);
    border: 1px solid rgba(232, 98, 44, 0.3);
    color: #ff8e5a;
    font-size: 0.75rem;
    padding: 0.35rem 0.75rem;
    border-radius: 20px;
}

.theme-toggle-btn {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: transparent;
    border: 1px solid rgba(0,0,0,0.1);
    color: inherit;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
}

[data-bs-theme="dark"] .theme-toggle-btn {
    border-color: rgba(255,255,255,0.15);
}

.theme-toggle-btn:hover {
    transform: scale(1.05);
    background: rgba(0,0,0,0.05);
}

@media (max-width: 991px) {
    .login-hero-side {
        display: none;
    }
    .login-form-side {
        flex: 1;
        min-height: 100vh;
    }
}
