    body {
      margin: 0;
      font-family: "Poppins", sans-serif;
      background: #f1f5f9;
      display: flex;
      justify-content: center;
      align-items: center;
      height: 100vh;
    }

    .card {
      background: white;
      padding: 25px;
      width: 380px;
      border-radius: 12px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    }
.radio-group .options {
  background: rgba(66, 65, 65, 0.145);
  padding: 10px 10px 10px;
  border-radius: 5px;
  margin-bottom: 10px;
}
    h2 {
      text-align: center;
      margin-bottom: 15px;
    }

    .input {
      width: 95%;
      padding: 10px;
      margin-bottom: 12px;
      border-radius: 8px;
      border: 1px solid #ddd;
      font-size: 14px;
    }

    textarea {
      resize: none;
      height: 80px;
    }

    button {
      width: 100%;
      padding: 10px;
      border: none;
      border-radius: 8px;
      background: #111827;
      color: white;
      font-size: 14px;
      cursor: pointer;
      transition: 0.3s;
    }

    button:hover {
      background: #1f2937;
    }

    .success {
      text-align: center;
      color: green;
      font-size: 14px;
      margin-top: 10px;
      display: none;
    }