body {
    font-family: Arial, sans-serif;
    background-color: #94cbff;
    margin: 0;
    padding: 0;
  }
  
  .container {
    max-width: 600px;
    margin: 50px auto;
    padding: 20px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  }
  
  h1 {
    text-align: center;
    color: #333;
  }
  
  fieldset {
    border: none;
    margin: 20px 0;
    padding: 0;
  }
  
  legend {
    font-size: 1.2em;
    margin-bottom: 10px;
    color: #444;
  }
  
  label {
    display: block;
    margin: 10px 0 5px;
    font-weight: bold;
  }
  
  select, textarea, input[type="submit"] {
    width: 100%;
    padding: 10px 0 5px;
    margin-top: 5px;
    border: 1px solid #ccc;
    border-radius: 4px;
  }
  
  textarea {
    resize: vertical;
  }
  
  input[type="submit"] {
    background-color: #007BFF;
    color: #fff;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }
  
  input[type="submit"]:hover {
    background-color: #0056b3;
  }

.centered {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 60vh;
}