html, body { height: 100%; margin: 0; }

.login-split {
    display: flex;
    min-height: 100vh;
}

.login-brand-panel {
    flex: 0 0 42%;
    background: #111111;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
}

.login-brand-panel::before {
    content: '';
    position: absolute;
    top: -120px; right: -120px;
    width: 380px; height: 380px;
    border-radius: 50%;
    background: none;
    pointer-events: none;
}
.login-brand-panel::after {
    content: '';
    position: absolute;
    bottom: -100px; left: -80px;
    width: 320px; height: 320px;
    border-radius: 50%;
    background: none;
    pointer-events: none;
}

.login-form-panel {
    flex: 1;
    background: #f8fafc;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2rem;
}

.login-form-wrap { width: 100%; max-width: 440px; }

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 14px 0;
    border-bottom: 1px solid rgba(255,255,255,.06);
}
.feature-item:last-child { border-bottom: none; }
.feature-icon {
    width: 38px; height: 38px;
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    font-size: 16px;
    background: rgba(255,255,255,.07);
}

.form-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(0,0,0,.08), 0 1px 4px rgba(0,0,0,.04);
    padding: 2rem;
}

/* Card + form — borders handled globally in brand.css */

.btn-register {
    background: #BF1914;
    border: none;
    font-weight: 600;
    letter-spacing: .3px;
    transition: all .2s;
}
.btn-register:hover {
    background: #A6150F;
    transform: translateY(-1px);
    box-shadow: 0 6px 18px rgba(191,25,20,.35);
}
.btn-register:active { transform: translateY(0); }

.or-divider {
    display: flex; align-items: center; gap: 12px;
    color: #9ca3af; font-size: .8rem;
}
.or-divider::before, .or-divider::after {
    content: ''; flex: 1; height: 1px; background: #e5e7eb;
}

.brand-mark {
    width: 48px; height: 48px;
    border-radius: 14px;
    background: #BF1914;
    display: flex; align-items: center; justify-content: center;
}

.stat-item { text-align: center; }
.stat-num { font-size: 1.4rem; font-weight: 800; color: #fff; line-height: 1.1; }
.stat-label { font-size: .7rem; color: rgba(255,255,255,.45); margin-top: 2px; }

@media (max-width: 768px) {
    .login-brand-panel { display: none; }
    .login-form-panel { background: #111111; }
    .form-card { background: rgba(255,255,255,.96); }
}

/* SweetAlert2 — brand overrides */
.swal2-popup { border-radius: 16px !important; font-family: inherit !important; padding: 0 0 1.5rem !important; }
.swal2-title { color: #111111 !important; font-weight: 800 !important; font-size: 1.5rem !important; }
.swal2-html-container, .swal2-content { color: #6b7280 !important; font-size: .925rem !important; }
.swal2-styled.swal2-confirm {
    background: #BF1914 !important;
    border-radius: 8px !important;
    font-weight: 600 !important;
    padding: .55rem 1.75rem !important;
    box-shadow: 0 4px 14px rgba(191,25,20,.3) !important;
}
.swal2-styled.swal2-confirm:focus { box-shadow: 0 0 0 3px rgba(191,25,20,.25) !important; }
.swal2-icon.swal2-success { border-color: #9CA3AF !important; }
.swal2-icon.swal2-success [class^=swal2-success-line] { background-color: #111111 !important; }
.swal2-icon.swal2-success .swal2-success-ring { border-color: rgba(156,163,175,.3) !important; }
