:root {
  --blue: #01273c;
  --white: #ffffff;
  --morado: #924cf1;
  --yellow: #DADE00;
  font-family: "Rockwell", serif;
}

body {
  background-color: var(--blue);
  /* display: flex; */
  justify-content: center;
  align-items: center;
  height: 100vh;
}

.formContainer {
  margin-top: 7%;
  /* width: 80vw;
  max-width: 550px; */
}

#class-form {
  display: grid;
  grid-template-columns: 100%;
  row-gap: 7px;
  width: 100%;
  max-width: 550px;
  background-color: #f5f5f5;
  padding: 20px;
  border-radius: 5px;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#class-form label {
  display: block;
  margin-bottom: 10px;
  font-weight: bold;
}

#class-form input,
#class-form select {
  padding: 10px;
  border: none;
  border-radius: 5px;
  font-size: 1rem;
}

#class-form .submitButton {
  background-color: var(--morado);
  color: #f5f5f5;
  padding: 10px 20px;
  border: none;
  margin-top: 1em;
}
