body {
  background: url(../images/flowlogicbg.png) no-repeat;
  background-size: contain;
  color: #000;
  font-family: "Noto Sans", sans-serif;
  font-size: 16px;
  background-position: center;
}

.wrapouter {
  margin: 25px 50px;
}

.logo {
  width: 200px;
}

.header {
  display: flex;
  justify-content: space-between;
}

li {
  list-style: none;
  font-size: 16px;
}

li a {
  color: #359489;
  text-decoration: none;
}

.middlewrap {
  min-height: 80vh;
  display: flex;
  align-items: center;
}

.emailwrap {
  width: 400px;

  background: #F9FAFB;
  margin: auto;
  border-radius: 10px;
  box-shadow: 1px 6px 27px 1px rgba(0, 0, 0, 0.15);
  -webkit-box-shadow: 1px 6px 27px 1px rgba(0, 0, 0, 0.15);
  -moz-box-shadow: 1px 6px 27px 1px rgba(0, 0, 0, 0.15);

  padding: 25px;
  border-radius: 12px;

  text-align: center;

}

.emailwrap h2 {
  font-size: 24px;
  margin: 0;
  margin-bottom: 8px;
  color: #1a1a1a;
}

.emailwrap p {
  font-size: 14px;
  color: #555;
  margin-bottom: 20px;
}

.input-group {
  display: flex;
  align-items: center;
  background: #f0f2f5;
  border-radius: 6px;
  overflow: hidden;
  width: 90%;
  margin: auto;
}

.input-group input {
  flex: 1;
  border: none;
  padding: 12px;
  font-size: 14px;
  outline: none;
  background: transparent;
}

.input-group button {
  background: #00997a;
  color: #fff;
  border: none;
  padding: 12px 18px;
  font-size: 14px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.input-group button:hover {
  background: #007a61;
}

#status {
  margin-top: 20px;
  font-size: 14px;
}

.footer p {
  display: flex;
  justify-content: center;
  font-size: 14px;
}

.spinner {
  border: 3px solid #f3f3f3;
  border-top: 3px solid #00997a;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  animation: spin 1s linear infinite;
  display: inline-block;
  vertical-align: middle;
  margin-right: 8px;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@media only screen and (max-width: 600px) {
  .wrapouter {
    margin: 25px 10px !important;
  }

  .logo {
    width: 180px !important;
  }
  .emailwrap {
    width: 100% !important;
    padding: 20px !important;
  }

  .emailwrap p {
    font-size: 13px !important;
  }
  .emailwrap h2 {
      font-size: 18px !important;
  }
  .input-group {
    width: 100% !important;
  }

  .input-group button {
    font-size: 13px !important;
  }

  .footer p {
    font-size: 12px !important;
  }

  .middlewrap {
    min-height: 75vh !important;
  }
  body{
    background-size: cover !important;
  }
}