.container {
  min-height: 100vh;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-image: linear-gradient(#0088cc, #1bbc9b);
  font-family: "Lato", Avenir, Verdana, Nunito, sans-serif;
}

.logoContainer {
  margin-top: 2rem;
}

.formWrapper {
  background: white;
  border-radius: 4px;
  box-shadow: 0 0 5px 2px rgba(255, 255, 255, 0.5);
  width: 100%;
  max-width: 350px;
  padding: 2rem;
  margin-top: 1.6rem;
  margin-bottom: 3.5rem;
}

.header {
  color: #0088cc;;
  font-size: 1.5rem;
  text-align: center;
  margin-bottom: 2rem;
}

.inputWrapper {
 display: flex;
  margin-bottom: 1rem;
}

.inputField {
  width: 100%;
  padding: 0.3rem 0;
  padding-left: 0.5rem;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  font-size: 1rem;
}

.inputIcon {
  position: relative;
  right: 0;
  top: 17px;
  transform: translateY(-50%);
  background: #e0e0e0;
  padding: 0.6rem;
  
  color: black;
  display: flex;
  align-items: center;
  justify-content: center;
}

.button {
  width: 100%;
  padding: 0.5rem;
  margin-bottom: 0.75rem;
  border: none;

  background: #0288d1;
  color: white;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: background-color 0.2s;
}

.button:hover {
  opacity: 0.85;
}

.errorText {
  color: red;
  font-size: 0.75rem;
  margin-top: 0.25rem;
  height: min-content;
}

.messageText {
  text-align: center;
  color: #0288d1;
  font-size: 0.875rem;
  margin-top: 1rem;
}

.contactInfo {
  text-align: center;
  font-size: 16px;
  color: #0088cc;
}

.separator {
  margin: 0 0.5rem;
  color: #757575;
}

.recaptchaText {
  font-size: 12px;
  text-align: center;
  margin-top: 1rem;
  color: black;
}

.recaptchaText a {
  color: #0288d1;
  text-decoration: none;
}

@media (max-width: 480px) {
  .formWrapper {
    padding: 1.5rem;
  }
}