body {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0;
  background: #111111;
  color: white;
  font-family: Afacad, Arial, Helvetica, sans-serif;
  box-sizing: border-box;
  min-height: 99vh;
}

* {
  box-sizing: border-box;
}

h1,
h3 {
  text-align: center;
}
h1 {
  margin-bottom: 2%;
}

h3 {
  margin-bottom: 5%;
  font-weight: 400;
}

.form {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  max-width: 600px;
}

.label {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.group {
  display: flex;
  justify-content: space-between;
}

input,
textarea {
  width: 100%;
  height: 50px;
  border: 1px solid white;
  margin-bottom: 15px;
  background: #222222;
  margin-top: 3px;
  color: white;
  padding-left: 10px;
}

textarea {
  padding: 10px 5px;
  height: 150px;
}

.button-field {
  display: flex;
  justify-content: flex-end;
}

button {
  background: #55f8c7;
  padding: 12px 25px;
  width: auto;
  border: none;
}

.warn {
  color: red !important;
}

.warn input,
.warn textarea {
  border-color: red !important;
}
