body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen,
    Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  color: aliceblue;
  background-color: rgb(94, 110, 255);
  font-size: 1rem;
  min-width: 300px;
}

body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  z-index: -1;
  background-image: linear-gradient(
      180deg,
      rgba(94, 110, 255, 0.603),
      rgba(243, 17, 17, 0.055)
    ),
    url(https://images.unsplash.com/photo-1542751371-adc38448a05e?ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&ixlib=rb-1.2.1&auto=format&fit=crop&w=2550&q=80);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

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

label,
input,
button,
select,
textarea {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

.container {
  padding: 0%;
  max-width: 750px;
  margin: 2rem auto 0 auto;
}

@media (max-width: 750px) {
  .container {
    width: 600px;
    max-width: 100%;
  }
}

form {
  background: rgba(58, 58, 58, 0.9);
  padding: 1rem 0.625rem 0.5rem 0.625rem;
  border-radius: 0.25rem;
}

label {
  display: flex;
  align-items: center;
  margin-bottom: 0.5rem;
}

.form-group {
  margin: 0 auto 1.25rem auto;
  padding: 0.25rem;
}

.form-control {
  box-sizing: border-box;
  display: block;
  width: 100%;
  max-width: 100%;
  min-width: 100%;
  height: 2.375rem;
  padding: 0.375rem 0.75rem;
  color: #495057;
  background-color: aliceblue;
  background-clip: padding-box;
  border: 1px solid #ced4da;
  border-radius: 0.25rem;
}

.form-control:focus {
  border-color: #80bdff;
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

textarea {
  min-height: 8rem;
}

#submit {
  background-color: #26b84b;
  border: 0px;
  color: aliceblue;
}
