
    body {
      height: 100vh;
      margin: 0;
      display: flex;
      justify-content: center;
      align-items: center;
      /*background: radial-gradient(circle at top right, #3a1c71, #d76d77, #ffaf7b);*/
       background: radial-gradient(circle at top right,#2C2C2C , #2C2C2C ,#F8C700 );
      background-size: cover;
      font-family: 'Poppins', sans-serif;
      overflow: hidden;
    }

    .login-card {
      width: 370px;
      padding: 50px 40px;
      border-radius: 25px;
      background: rgba(255, 255, 255, 0.08);
      box-shadow: 0 8px 40px rgba(0, 0, 0, 0.3);
      backdrop-filter: blur(15px);
      text-align: center;
      color: #fff;
    }

    .login-card img {
      width: 90px;
      height: 90px;
      border-radius: 50%;
      margin-bottom: 25px;
      background: rgba(255, 255, 255, 0.1);
      padding: 10px;
    }

    .input-group {
      border-bottom: 1px solid rgba(255, 255, 255, 0.4);
      margin-bottom: 25px;
      transition: all 0.3s ease;
    }

    .input-group:hover,
    .input-group:focus-within {
      border-bottom: 1px solid #fff;
    }

    .input-group-text {
      background: transparent;
      border: none;
      color: rgba(255, 255, 255, 0.8);
      font-size: 16px;
    }

    .form-control {
      background: transparent !important;
      border: none;
      color: #fff;
      font-size: 15px;
      outline: none;
      box-shadow: none;
      padding-left: 5px;
    }
      .form-control:focus {
      background: transparent !important;
      border: none;
      color: #fff;
      font-size: 15px;
      outline: none;
      box-shadow: none;
      padding-left: 5px;
    }

    .form-control::placeholder {
      color: rgba(255, 255, 255, 0.6);
    }

    .form-check-label {
      color: rgba(255, 255, 255, 0.85);
      font-size: 14px;
    }

    .forgot {
      color: rgba(255, 255, 255, 0.7);
      text-decoration: none;
      font-size: 14px;
    }

    .forgot:hover {
      color: #fff;
      text-decoration: underline;
    }

    .login-btn {
      /*background: linear-gradient(90deg, #9c27b0, #2196f3);*/
       background: radial-gradient(circle at top right, #F8C700, #A7A8AA, #2C2C2C) !important;
      border: none;
      color: white;
      width: 100%;
      border-radius: 10px;
      padding: 12px;
      font-size: 16px;
      letter-spacing: 1px;
      font-weight: 500;
      transition: 0.3s;
      box-shadow: 0 3px 12px rgba(0, 0, 0, 0.3);
    }

    .login-btn:hover {
      background: linear-gradient(90deg, #2196f3, #9c27b0);
      transform: translateY(-2px);
      box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
    }

    @media (max-width: 420px) {
      .login-card {
        width: 90%;
        padding: 40px 30px;
      }
    }
 