body {
    font-family: Arial, sans-serif;
    background-color: white;
    color: black;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height:1200px;
  }
  
  .container {
    text-align: center;
  }
  
  .logo {
    width: 300px; 
    margin-bottom: 5px;
  }
  
  h1 {
    color: black;
  }
  
  form {
    background-color: white;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  }
  
  
  fieldset {
    border: none;
    margin-bottom: 20px;
  }
  
  legend {
    color: black;
    font-weight: bold;
  }
  
  label {
    display: block;
    margin-bottom: 10px;
    color: black;
  }
  
  input[type="text"],
  input[type="email"],
  select,
  button {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border: 4px solid #ccc;
    border-radius: 5px;
    box-sizing: border-box;
  }
  
  input[type="radio"] {
    margin-right: 2px;
  }
  
  button {
    background-color: #87CEEB; 
    color: white;
    border: none;
    cursor: pointer;
  }
  
  button:hover {
    background-color: #4682B4; 
  }