* {
  box-sizing: border-box;
}

body {
  width: 100%;
  margin: 0%;
  padding: 0;
  background-color: rgb(85, 94, 124);
  color: white;
}

#title,
#description {
  text-align: center;
}

#title {
  font-size: 2.5em;
  margin-top: 30px;
  margin: 30px 0 5px 0;
}

#description {
  font-size: 1.3em;
  margin: 0 0 30px 0;
}

form {
  background-color: rgba(51, 51, 51, 0.596);
  padding: 3rem;
  width: 880px; /*650px*/
  min-width: 50vw;
  max-width: 90vw;
  margin: 0 auto;
  font-size: 1.5em;
  border-radius: 10px;
}

form > label {
  display: block;
  width: 100%;
  /* margin: 1em 0; */
}

label input,
label select {
  height: 30px;
  padding: 0 1em 0 1em;
}

label input,
label select,
label textarea {
  width: 100%;
  margin-bottom: 23px;
}

.radio label,
.checkbox label {
  display: block;
}

.radio input,
.checkbox input {
  width: unset;
  margin: 0 0.5em 0 0;
  vertical-align: middle;
}

.checkbox {
  margin-bottom: 23px;
}

button {
  width: 100%;
  height: 40px;
  font-size: 1rem;
  font-weight: bold;
  background-color: rgb(69, 192, 69);
  color: white;
}

input,
textarea,
select,
button {
  border-radius: 5px;
  border: 1px solid;
  border-color: white;
}

input[type="text"],
input[type="email"],
input[type="number"],
select,
textarea {
  margin-top: 10px;
}
