body {
    font-family: 'Arial', sans-serif;
    background-color: #f4f4f4;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    /* align-items: center; */
    min-height: 100vh;
  }
  
  form {
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    max-width: 800px;
    width: 100%;
  }
  
  h1 {
    text-align: center;
    color: #08347a; /* Customize the color as needed */
  }

  h2 {
    text-align: center;
    color: #333;
  }
  
  label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
    color: #333;
  }
  
  input,
  select {
    width: 100%;
    padding: 8px;
    margin-bottom: 16px;
    box-sizing: border-box;
  }
  
  input[type="radio"] {
    margin-right: 4px;
  }
  
  button {
    background-color: #4285f4;
    color: #fff;
    padding: 10px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    width: 100%;
  }
  
  button:hover {
    background-color: #357ae8;
  }
  
  button[type="reset"] {
    background-color: #d32f2f;
  }
  
  button[type="reset"]:hover {
    background-color: #b52a25;
  }

  
  .radio-group {
    display: flex;
    flex-direction: row;
    width: 70%;
    align-items: left;
    margin-bottom: 16px;
  }
  
  input[type="radio"] + label {
    margin-left: 80px;
  }
  