body {
  background: #ebe3cc;
  margin: 0;
  padding: 0;
  font-family: "Roboto Slab", Arial, Helvetica, sans-serif;
}

body > div {
  display: flex;
  flex-direction: column;
  align-items: center;
}

#emailForm1 {
  height: 1.7em;
}

#header {
  background: #fdca07;
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 10px 0;
}

button {
  cursor: pointer;
  color: #fff !important;
  display: inline-block;
  background-color: #bfa37a;
  padding: 5px 10px;
  line-height: 100%;
  border-radius: 5px;
  transition: 0.4s all linear;
}

.form {
  display: flex;
  align-items: center;
  gap: 10px;
}

.afterForm {
  margin-top: 1em;
}

.error {
  color: red;
  font-weight: bold;
}

.success {
  color: darkgreen;
}

button:hover:not(.disabled) {
  background: #d77646;
}

input {
  width: 400px;
}

#content {
  border: 2px solid #dfd0bb;
  margin: 20px;
  background-color: rgba(255, 255, 255, 0.3);
  background-repeat: repeat;
  border-radius: 5px;
}

#content-header {
  background: #66352c;
  padding: 5px;
  color: white;
  text-align: center;
}

#content-body {
  padding: 10px 20px 20px;
}

.disabled {
  opacity: 0.5;
}

h1 {
  margin: 10px 0 5px;
}

img {
  height: 50px;
}

.spinloader {
  width: 12px;
  height: 12px;
  border: 2px solid #68996f;
  border-bottom-color: transparent;
  border-radius: 50%;
  display: inline-block;
  box-sizing: border-box;
  animation: rotation 1s linear infinite;
}

@keyframes rotation {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@media screen and (max-width: 800px) {
  input {
    width: 95%;
  }

  .form {
    flex-direction: column;
    align-items: flex-start;
  }

  #errorMessage {
    margin-top: 0.4em;
  }
}

/*# sourceMappingURL=style.css.map */
