body {
  background-image: url(/static/img/background.png);
  margin: 0;
  background-size: cover;
  background-position: center center;
  overflow: hidden;
}

.container {
  width: 100vw;
  height: 100vh;

  display: flex;
  align-items: center;
  justify-content: center;

  overflow: hidden;
}

.content {
  width: fit-content;
  height: fit-content;

  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 20px;

  width: 600px;
}

.disclaimer {
  display: flex;
  align-items: center;
  column-gap: 20px;

  text-align: justify;
  color: var(--primary-brown);
  padding: 10px;

  border-radius: 10px;
}

.logo {
  width: 250px;
  filter: drop-shadow(0px 0px 5px rgba(0, 0, 0, 0.5));
}

.email_input--container {
  width: 100%;
  display: flex;
  align-items: center;
  column-gap: 10px;
}

.email_input {
  background-color: rgba(255, 255, 255, 0.3);
  outline: none;
  padding: 10px;
  border-radius: 22px;
  flex: 1;

  color: var(--secondary-dark-green);
}

.email_input::placeholder {
  color: var(--secondary-light-green);
}

.form_submit {
  width: 44px;
  height: 44px;

  background-color: rgba(255, 255, 255, 0.3);

  border-radius: 22px;

  display: flex;
  align-items: center;
  justify-content: center;
}

.form_submit:hover {
  box-shadow: inset 0 2px 6px rgba(255, 255, 255, 0.2),
    0 0px 4px rgba(0, 0, 0, 0.1);
}

.form_submit img {
  width: 24px;
  height: 24px;
}

.form_error{
  color: var(--highlight-yellow);
  filter: drop-shadow(0px 0px 2px rgba(0, 0, 0, 0.5));
}

.form_success{
  color: var(--primary-light-green);
  filter: drop-shadow(0px 0px 2px rgba(0, 0, 0, 0.5));
}

@media (max-width: 680px) {
  .content {
    padding: 20px;
  }

  .disclaimer {
    flex-direction: column;
  }
}