@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  background: linear-gradient(0deg, rgba(10, 10, 200, .8), rgba(0, 75, 150, .8));
  font-family: 'Montserrat', sans-serif;
}

body {
  display: flex;
  flex-direction: column;
  align-items: center;
  /* margin: 0 auto; */
  color: white;
  min-width: 420px;
}

main {
  background: rgba(10, 10, 30, .5);
  padding: 20px;
  border-radius: 5px;
  margin-top: 20px;
  width: 800px;
}

@media (max-width: 830px){
  main {
    width: 640px;
  }
}

@media (max-width: 660px){
  main {
    width: 460px;
  }
}

form {
  width: 95%;
  margin: auto;
}

h1 {
  padding-top: 20px;
}

input,
button,
select,
textarea {
  font-family: inherit;
  font-size: inherit;
  border-radius: 3px;
}

label {
  display: flex;
  align-items: center;
  padding: 2px;
}

input {
  padding: 2px;
  border: none;
}

button {
  padding: 5px 0;
}

.text-center {
  text-align: center;
}

.descriptor {
  margin-bottom: 2px;
/*   font-weight: lighter; */
}

.wrapper {
  margin: 15px auto;
}

.input-radio-check {
  display: inline-block;
  margin-right: 3px;
}

.input-text {
  width: 100%;
  padding: 6px 10px;
}

#description {
  font-style: italic;
  margin-top: 0;
}

#submit {
  width: 100%;
  height: 30px;
  cursor: pointer;
  border: none;
  background: #b53147;
  color: white;
}

.return-link {
  color: white;
  padding: 0 10px;
}

#return {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  font-size: smaller;
  margin-top: 5px;
  padding: 5px 5px 0 5px;
}