    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: 'Poppins', sans-serif;
    }

    body {
      height: 100vh;
      display: flex;
      justify-content: center;
      align-items: center;
      /* background: radial-gradient(circle at top left, #3a0ca3, #000); */
      background-image: url(background1.jpg);
      background-repeat: no-repeat;
      background-size: cover;
      color: #fff;
    }
    .form-container {
      background: rgba(255, 255, 255, 0.05);
      backdrop-filter: blur(10px);
      border: 1px solid rgba(255, 255, 255, 0.2);
      border-radius: 15px;
      padding: 40px 50px;
      width: 400px;
      box-shadow: 0 0 30px rgba(0, 0, 0, 0.3);
    }

    h2 {
      text-align: center;
      font-size: 24px;
      margin-bottom: 8px;
    }

    p {
      text-align: center;
      font-size: 14px;
      color: #ccc;
      margin-bottom: 25px;
    }

    label {
      display: block;
      margin-bottom: 6px;
      font-weight: 500;
    }

    .name-group {
      display: flex;
      gap: 10px;
    }

    input, select {
      width: 100%;
      padding: 10px;
      background: transparent;
      border: none;
      border-bottom: 1px solid rgba(255, 255, 255, 0.3);
      color: #fff;
      outline: none;
      margin-bottom: 20px;
    }

    input::placeholder {
      color: #999;
    }

    select {
      appearance: none;
      cursor: pointer;
    }

    button {
      width: 100%;
      background: linear-gradient(90deg, #0745fd, #4361ee);
      border: none;
      color: white;
      padding: 12px;
      font-size: 16px;
      border-radius: 8px;
      cursor: pointer;
      transition: 0.3s;
    }

    button:hover {
      background: linear-gradient(90deg, #02113e, #4361ee);
    }
    option {
  background-color: #021860;
  color: #fff;
}