body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f8f9fa;
    margin: 0;
    padding: 0;
  }

  .form-wrapper {
    max-width: 600px;
    margin: 60px auto;
    background-color: #fff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 0 20px rgba(0,0,0,0.05);
    border-top: 8px solid #f1c40f;
  }

  h1 {
    font-size: 22pt;
    text-align: center;
    color: #333;
    margin-bottom: 20px;
  }
  p{
    text-align: center;
    font-size: 18pt;
    margin-bottom: 20px;
  }

  label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #444;
  }

  input[type="text"],
  input[type="email"],
  select,
  textarea {
    width: 100%;
    padding: 12px 15px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 16px;
    transition: border 0.3s;
  }

  input:focus,
  textarea:focus,
  select:focus {
    border-color: #f1c40f;
    outline: none;
    box-shadow: 0 0 0 3px rgba(241, 196, 15, 0.2);
  }

.btnSubmit {
    width: 100%;
    padding: 12px;
    background-color: #f1c40f;
    color: #222;
    border: none;
    border-radius: 6px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s;
  }

  /*button:hover {
    background-color: #d4ac0d;
  }*/

  @media (max-width: 600px) {
    .form-wrapper {
      padding: 20px;
    }
  }