 body {
      font-family: "Poppins", sans-serif;
      margin: 40px;
      background-color: #e9d6fe;
    }

    h1 {
      font-family: "Poppins", sans-serif;
      font-weight: 500;
      font-style: normal;
      color: rgb(255, 85, 26);
    }

    h2 {
      font-family: "Poppins", sans-serif;
      font-weight: 500;
      font-size: 0.7em;
      font-style: normal;
      color: #e9d6fe;
      margin: auto;
      margin-top: 0pt;
      background-color: rgb(255, 85, 26);
      border-radius: 25px;
      padding: 2px;
      max-width: 125px;
    }

    .form {
      margin: auto;
      max-width: 700px;
      text-align: center;
    }

    label {
      display: block;
      margin-top: 10px;
    }

    input, select {
      width: 60%;
      padding: 10px 15px;
      margin-top: 5px;
      border: none;
      border-radius: 25px;
      background-color: rgba(255,255,255,0.5);
      margin-bottom: 20px;
      font-family: "Poppins", sans-serif;
      font-weight: 300;
      font-style: normal;
    }

    select {
      width: 65%;
    }

    button {
      margin: 5px;
      margin-top: 20px;
      padding: 10px 15px;
      font-size: 16px;
      cursor: pointer;
      border: none;
      border-radius: 25px;
      background-color: rgba(255,255,255,0.5);
      padding: 10px;
      width: 30%;
      font-family: "Poppins", sans-serif;
      font-weight: 500;
      font-style: normal;
    }

    button:hover {
      transition-duration: 0.3s;
      background-color: rgba(255,255,255,0.9);
    }

    button:active {
      transition-duration: 0s;
      background-color: rgba(255,255,255,0.5);
    }

    a:link, a:visited {
      color: rgb(0, 0, 0);
      text-decoration: none;
    }

    a:hover {
      color: rgb(255, 85, 26);
    }

    .preview {
      margin: auto;
      text-align: left;
      margin: 20px;
      padding: 30px;
      width: 600px;
      height: 200px;
      border: none;
      border-radius: 25px;
      background-color: rgba(255,255,255,0.9);
      font-family: sans-serif;
      font-style: normal;
    }

    .input-error {
      box-shadow: inset 0 0 0 2px rgba(255, 85, 26, 1);
      border: none;
    }