/* Set default font and background color for the entire page */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #2b6e36;
    margin: 0;
    padding: 0;
    color: #000000;
  }
  
  /* Center the heading and add some margin */
  h1 {
    font-size: 2.5em;
    text-align: center;
    margin: 30px 0;
    color: #005086;
  }
  
  /* Add some margin and line-height to the paragraphs */
  p {
    font-size: 1.2em;
    line-height: 1.5;
    margin: 10px 0;
  }
  
  /* Style the input field */
  input {
    padding: 10px;
    margin: 10px 0;
    border: none;
    border-radius: 5px;
    box-shadow: 0 0 5px #00ffd5;
    width: 100%;
    max-width: 400px;
  }
  
  /* Style the select element */
  select {
    width: 100%;
    height: 100px;
    margin: 10px 0;
    border: none;
    border-radius: 5px;
    box-shadow: 0 0 5px #3c5f6d;
    background-color: #639192;
    cursor: pointer;
  }
  
  /* Style the options within the select element */
  option {
    padding: 10px;
    font-size: 1.2em;
    cursor: pointer;
  }
  
  /* Style the submit button */
  input[type="submit"] {
    padding: 10px 20px;
    background-color: #0090c1;
    color: rgb(26, 105, 151);
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease-in-out;
  }
  
  /* Add a hover effect on the submit button */
  input[type="submit"]:hover {
    background-color: #005086;
  }
  
  /* Add a container to center the form */
  .container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
  }
  
  /* Style the form */
  form {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 600px;
    width: 100%;
    padding: 20px;
    background-color: #b64b4b;
    border-radius: 5px;
    box-shadow: 0 0 10px #5c192f;
  }
  
  /* Style the form elements */
  form > * {
    width: 100%;
    box-sizing: border-box;
  }
  
  /* Add some margin to the input and select elements */
  form > input,
  form > select {
    margin-bottom: 20px;
  }
  
  /* Style the error message */
  .error-message {
    color: #d93025;
    font-size: 1.1em;
    margin-top: 10px;
  }