* {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  background: black;
  color: white;
  font-family: "Open Sans", sans-serif;
  font-size: 14px;
  text-align: center;
}

h1 {
  margin: 0;
}

.container {
  min-width: 100%;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 1rem;
}

form {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 2rem;
  border: 1px solid white;
  margin: 1rem;
  border-radius: 15px;
}

input {
  border-style: solid;
  border-width: 1px;
  border-color: white;
  border-radius: 5px;
  line-height: 30px;
  padding: 0 10px;
  font-family: inherit;
}

input#emailInput {
  width: 100%;
  max-width: 25rem;
}

input:invalid:not(:placeholder-shown) {
  border-color: red;
}

label {
  margin-block: 1rem;
}

button {
  background: buttonface;
  border-style: solid;
  border-width: 1px;
  border-color: white;
  border-radius: 5px;
  height: 30px;
  line-height: 30px;
  padding: 0 10px;
  font-family: inherit;
  width: 10rem;
}
button .fas {
  display: none;
}
button:disabled .submit {
  display: none;
}
button:disabled .fas {
  display: block;
}

a {
  color: inherit;
}/*# sourceMappingURL=main.css.map */