  body {
      background-color: #f5f6f8;
    }
    /* Home */
    header{
      background: #f54a23;
    }
    header a {
      text-decoration: none;
      color: #333;
    }
    header i {
      color: #d4c6c6;
    }
    header .brand {
      color: #f59e0b;
    }
    /* hero */
    .carousel-item {
      height: 85vh;
    }

    .carousel-item img {
      height: 100%;
      object-fit: cover;
    }

    /* side bar */
    .sidebar {
      min-height: 100vh;
      background: #fff;
      border-right: 1px solid #e5e5e5;
    }
    .sidebar a {
      text-decoration: none;
      color: #333;
      padding: 12px 15px;
      display: block;
      border-radius: 8px;
      margin: 5px 0px 5px 0px;
    }
    .sidebar a.active,
    .sidebar a:hover {
      background: #e11d48;
    }
    .balance-card {
      background: #e11d48;
      color: #fff;
      border-radius: 12px;
    }

    /* invest plan */
    .plans-wrapper {
      justify-content: center;
    }

    .plan-card {
      width: 320px; /* Controls wrap behavior */
      border-radius: 14px;
      border: none;
      transition: all .25s ease;
    }

    .plan-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 12px 28px rgba(0,0,0,.08);
    }

    .plan-icon {
      width: 70px;
      height: 70px;
      border-radius: 50%;
      background: #fde7ff;
      color: #b026ff;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 28px;
      margin: 0 auto 15px;
    }

    .divider {
      border-top: 1px solid #e5e7eb;
      margin: 14px 0;
    }

    .label {
      font-size: 14px;
      color: #6b7280;
    }

    .value {
      font-weight: 600;
      font-size: 18px;
    }

    /* Login/Register */
        #body {
      height: 100%;
      width: 100%;
      background: linear-gradient(120deg, #0d1b2a, #1b263b);
      display: flex;
      justify-content: center;
      align-items: center;
    }

    .bg-col {
      height: 100% !important;
      background: white;
      border-radius: 5px;
      box-shadow: 0 20px 40px rgba(0,0,0,.25);
    }

    .brand {
      font-weight: 700;
      color: #f59e0b;
    }

    .form-control:focus {
      box-shadow: none;
      border-color: #0d6efd;
    }
