    body {
      margin: 0;
      padding: 0;
      font-family: 'Lexend', sans-serif;
      background: linear-gradient(135deg, #7f96ff, #c5d8ff);
      min-height: 100vh;
      display: flex;
      justify-content: center;
      align-items: center;
      color: #fff;
    }

    .container {
      background-color: #1e1e2f;
      padding: 40px;
      border-radius: 16px;
      max-width: 720px;
      width: 90%;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
      text-align: center;
    }

    img {
      height: 80px;
      margin-bottom: 20px;
    }

    h2 {
      font-size: 32px;
      margin-bottom: 10px;
    }

    h3 {
      font-weight: 400;
      margin: 20px 0 10px;
    }

    ul {
      text-align: left;
      margin: 0 auto 20px;
      padding-left: 20px;
      max-width: 500px;
      line-height: 1.8;
    }

    ul li::marker {
      color: #8b9de6;
    }

    a {
      color: #8b9de6;
      font-weight: 600;
      text-decoration: none;
    }

    a:hover {
      text-decoration: underline;
    }

    .button {
      display: inline-block;
      margin-top: 25px;
      padding: 14px 26px;
      font-size: 16px;
      border: none;
      border-radius: 10px;
      background: linear-gradient(135deg, #6e8bff, #9daeff);
      color: #fff;
      cursor: pointer;
      transition: all 0.3s ease;
    }

    .button:hover {
      transform: translateY(-2px);
      box-shadow: 0 6px 20px rgba(0,0,0,0.2);
    }

    .note {
      font-size: 14px;
      color: #ccc;
      margin-top: 10px;
    }


    form {
  max-width: 500px;
  margin: 0 auto;
  text-align: left;
  color: #ddd;
}

form p {
  margin-bottom: 18px;
}

label {
  display: block;
  font-weight: 600;
  margin-bottom: 6px;
  font-size: 15px;
  color: #cbd5ff; /* soft light blue */
}

input[type="text"],
input[type="email"],
textarea {
  width: 100%;
  padding: 10px 12px;
  border-radius: 8px;
  border: none;
  font-size: 15px;
  background-color: #2a2a40;
  color: #eee;
  box-shadow: inset 0 0 6px rgba(0,0,0,0.5);
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

input[type="text"]:focus,
input[type="email"]:focus,
textarea:focus {
  outline: none;
  background-color: #3b3b61;
  box-shadow: 0 0 8px #8b9de6;
}

textarea {
  resize: vertical;
  min-height: 80px;
  font-family: 'Lexend', sans-serif;
}

button[type="submit"] {
  background: linear-gradient(135deg, #6e8bff, #9daeff);
  color: white;
  font-weight: 700;
  font-size: 16px;
  padding: 14px 26px;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  width: 100%;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

button[type="submit"]:hover {
  background: linear-gradient(135deg, #5b74e8, #8a9be6);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.25);
}
