body {
      background-color: #d8ebff !important;
      display: flex;
      height: 100vh;
      align-items: center;
      justify-content: center;
      padding: 10px;
    }
    .login-form {
      width: 100%;
      max-width: 400px;
      padding: 2rem;
      border-radius: 10px;
      background: #ffffff;
      box-shadow: 0 0 15px rgba(0,0,0,0.1);
    }

       .otp-box {
      max-width: 400px;
      margin: 100px auto;
      padding: 30px;
      background: #fff;
      border-radius: 12px;
      box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
    }


    /* Dashboard */

 .sidebar {
      width: 240px;
      background-color: #212529;
      height: 100vh;
      position: fixed;
      left: 0;
      top: 0;
      padding: 20px;
      transition: 0.3s;
    }
    .sidebar.collapsed {
      left: -240px;
    }
    .content {
      margin-left: 240px;
      transition: 0.3s;
    }
    .content.collapsed {
      margin-left: 0;
    }
    .card-box {
      color: #fff;
      padding: 20px;
      border-radius: 8px;
    }
    footer {
      background: #212529;
      color: white;
      padding: 10px;
      text-align: center;
    }