body {
    background: linear-gradient(to right, #5AA3D8, #734BFF) !important;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: 'Poppins', sans-serif;
    padding: 10px;
  }

  .login-card {
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    max-width: 1000px;
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
  }

  .login-left {
    background: linear-gradient(to bottom, #ff7e5f, #feb47b);
    color: #fff;
    padding: 40px;
    flex: 1 1 300px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .login-left h2 {
    font-weight: bold;
  }

  .login-left p {
    margin-top: 20px;
    line-height: 1.6;
  }

  .login-right {
    flex: 1 1 300px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .form-control {
    margin-bottom: 20px;
    border-radius: 50px;
    padding: 15px 20px;
  }

  .btn-login {
    background: linear-gradient(to right, #5AA3D8, #734BFF);
    border: none;
    border-radius: 50px;
    padding: 12px;
    font-weight: bold;
    transition: 0.3s;
  }

  .btn-login:hover {
    background: linear-gradient(to right, #457a9f, #6240db) !important;
    color: #ffffff !important;
  }

  .icon-circle {
    background: linear-gradient(to right, #ff7e5f, #feb47b);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 20px;
  }

  .icon-circle i {
    font-size: 30px;
    color: white;
  }

  .forgot-password, .create-account {
    text-align: center;
    margin-top: 10px;
    font-size: 14px;
  }

  .forgot-password a, .create-account a {
    color: #888;
    text-decoration: none;
  }

  /* Responsive Changes */
  @media (max-width: 768px) {
    .login-card {
      flex-direction: column;
    }

    .login-left, .login-right {
      padding: 30px 20px;
    }

    .login-left {
      text-align: center;
    }

    .login-left p {
      font-size: 14px;
    }
  }

  @media (max-width: 480px) {
    .form-control {
      padding: 12px 15px;
    }

    .icon-circle {
      width: 60px;
      height: 60px;
    }

    .icon-circle i {
      font-size: 24px;
    }
  }