body {
  font-size: 12px;
  font-family:'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
  background-color: #f4f4f4;

  
  & h1 {
    font-size: 3em;
  }

  & h2 {
    font-size: 1.5em;
  }

  & p {
    font-size: 1em;
    text-align: center;
    margin-top: 10px;
  }

  & a {
    color: #007bff;
    text-decoration: none;
  }
}

.form {
  font-size: 1rem;
  margin: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  border: none;

  & label {
    font-size: 1em;
    display: block;
    margin-top: 10px;
  }
  
  & input, textarea {
    width: 100%;
    max-width: 400px;
    padding: 10px;
    margin-top: 10px;
    border: 1px solid #ccc;
    border-radius: 8px;
  }

  & input[type="submit"] {
    background-color: #007bff;
    color: white;
    border: none;
    cursor: pointer;
    font-size: 1.5em;
    margin-top: 20px;
  } & input[type="submit"]:hover {
    background-color: #0056b3;
  } 
  & textarea {
    min-height: 10px;
    resize: vertical;
  }
}

.checkbox {
  display: flex;
  flex-flow: wrap;
  align-items: top;
  justify-content: center;
  margin: 20px;
  
  & input[type="checkbox"] {
    margin-right: 20px;
    width: 20px;
    height: 20px;
  }
}

.header {
  background-color: #0062ff;
  color: white;
  padding: 10px;
  text-align: center;
  font-size: 1.4em;
  border-radius: 14px;
}

.message-prompt {
  display: none;
  background-color: #d4edda;
  color: #155724;
  padding: 10px;
  border-radius: 8px;
  margin-top: 20px;
  text-align: center;
}

.error {
  display: block;
  background-color: #f8d7da;
  color: #721c24;
}