body {
    background: #eef1f5;
}

/* Sidebar */
.sidebar {
    width: 240px;
    background: #020826;
    min-height: 100vh;
    transition: 0.3s;
}

.sidebar .nav-link {
    color: #cbd5e1;
    border-radius: 10px;
    padding: 10px;
}

.sidebar .nav-link.active,
.sidebar .nav-link:hover {
    background: #fff;
    color: #000;
}

/* Mobile sidebar */
@media(max-width:768px){
    .sidebar {
        position: fixed;
        left: -240px;
        top: 0;
        height: 100%;
        z-index: 999;
    }

    .sidebar.show-sidebar {
        left: 0;
    }
}

/* Content */
.main-content {
    width: 100%;
}

/* Cards */
.dashboard-card {
    background: #fff;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

/* Insight */
.insight-box {
    background: #f1f5f9;
    padding: 10px;
    border-radius: 8px;
    margin-bottom: 8px;
}

/* Account */
.account-box {
    background: linear-gradient(135deg, #020826, #1e293b);
    padding: 15px;
    border-radius: 15px;
}

.nav-tabs .nav-link {
    border: none;
    color: #555;
}

.nav-tabs .nav-link.active {
    background: #020826;
    color: #fff;
    border-radius: 6px;
}
.table th {
    font-size: 14px;
    color: #64748b;
}

.table td {
    font-size: 14px;
}

/* ================= LOGIN PAGE ================= */

.login-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
}

.login-card {
    width: 100%;
    max-width: 900px;
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* LEFT PANEL */
.left-side {
    background: linear-gradient(135deg, #020826, #1e293b);
    color: #fff;
    padding: 40px;
}

.left-side small {
    color: #94a3b8;
    letter-spacing: 1px;
}

.feature-box {
    background: rgba(255,255,255,0.1);
    padding: 10px 15px;
    border-radius: 20px;
    margin-bottom: 10px;
    font-size: 14px;
}

/* RIGHT PANEL */
.right-side {
    padding: 40px;
}

.right-side input {
    height: 45px;
    border-radius: 10px;
}

.btn-dark-custom {
    background: #020826;
    color: #fff;
    border-radius: 10px;
    height: 45px;
    border: none;
}

.btn-dark-custom:hover {
    background: #1e293b;
}

/* MOBILE */
@media(max-width:768px){
    .login-card {
        border-radius: 10px;
    }

    .right-side {
        padding: 20px;
    }
}

/* FORM STANDARDIZATION */

.form-label {
    font-weight: 500;
    font-size: 14px;
}

.form-control {
    border-radius: 10px;
    height: 42px;
}

textarea.form-control {
    height: auto;
}

/* Tabs */
.custom-tabs .nav-link {
    border: none;
    color: #555;
    font-weight: 500;
}

.custom-tabs .nav-link.active {
    background: #020826;
    color: #fff;
    border-radius: 6px;
}

.step-header {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.step {
    padding: 6px 12px;
    background: #e2e8f0;
    border-radius: 20px;
    font-size: 13px;
}

.step.active {
    background: #020826;
    color: #fff;
}

.step-content {
    display: none;
}