body {
  font-family: "Nunito", sans-serif;
}

.form-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: #3ebb8c;
  width: 40%;
  height: 100vh;
}

.image-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  width: 60%;
  height: 100vh;
  padding: 50px;
}

input {
  outline: none;
  background-color: #3ebb8c;
  color: #f6f6f6;
  border: none;
  width: 90%;
  margin-left: 3px;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
  -webkit-background-clip: text;
  -webkit-text-fill-color: #ffffff;
  transition: background-color 5000s ease-in-out 0s;
  box-shadow: inset 0 0 20px 20px #23232329;
}

::placeholder {
  color: #f6f6f6;
  opacity: 1;
}

.input-text {
  padding: 7px 20px;
  margin: 8px 0;
  border: 1.5px solid #f6f6f6;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  outline: none;
  background-color: #3ebb8c;
  border-radius: 10px;
  color: #f6f6f6;
  width: 300px;
}

.input-captcha {
  padding: 7px 5px;
  margin: 8px 8px 8px 0;
  border: 1.5px solid #f6f6f6;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  outline: none;
  background-color: #3ebb8c;
  border-radius: 10px;
  color: #f6f6f6;
  width: 170px;
}

.login-button {
  background-color: #f6f6f6;
  width: 300px;
  border: none;
  border-radius: 10px;
  padding: 7px;
  color: #3ebb8c;
  font-weight: 700;
}


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

  .image-container {
    display: none;
  }
}