body {
  background-color: #DCCFEC;
  color: #38023B;
  font-family: "Inter", sans-serif;
  font-family: "Source Sans Pro", sans-serif;
  text-align: center;  
}

#head {
  text-align: center;
  margin: 0 auto;
  padding-top: 100px;
  width: 500px;
  display: flex;
  justify-content: center;
  font-family: inherit;
  font-size: large;
  font-weight: bold;
  font-size: 25px;
}

form {
  width: 500px;
  padding-top: 100px;
  margin: 0 auto;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.form-group {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 20px;
}

label {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 5px;
}

input[type="text"],
input[type="password"],
select,
textarea {
  width: 100%; 
  padding: 10px; 
  margin-top: 5px;
  font-size: 18px; 
  background-color: white;
  border: 1px solid #ccc;
  border-radius: 5px;
}

#err {
  color: #d62828;
  font-family: 'Times New Roman', Times, serif;
  font-style: italic;
}

#submit {
  background-color: #003049;
  color: white;
  padding: 10px 20px;
  margin: 0 auto;
  margin-left: 30px;
  margin-right: 10px;
  margin-top: 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

#signup {
  background-color: #003049;
  color: white;
  padding: 9px 20px;
  margin: 0 auto;
  margin-left: 30px;
  margin-right: 10px;
  margin-top: 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  text-decoration: none;
}

.submit-container{
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  /* align-self: flex-start; */
  width: 60%;
}