@import url("https://fonts.googleapis.com/css2?family=Open+Sans:wght@200;300;400;500;600;700&display=swap");

hr {
  margin-top: 20px;
}
.title {
  font-size: 19px;
  background-color: #50c878;
  padding: 20px;
  color: white;
  border-radius: 20px;
  margin-top: 20px;
}

.wrapper {
  width: 500px;
  margin-top: 70px;
  border-radius: 8px;
  padding: 30px;
  justify-content: center;
  display: flex;
  border: 1px solid transparent;
  box-shadow: 0 0px 6px 8px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(9px);
  -webkit-backdrop-filter: blur(9px);
}

form {
  display: flex;
  flex-direction: column;
}

h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #fff;
}

.input-field {
  position: relative;

  margin: 7px;
}

.input-field label {
  color: black;
  font-size: 16px;
}

.input-field input,
.input-field select {
  width: 100%;
  height: 43px;
  color: #000;
  background: white;
  outline: none;
  font-size: 16px;
  border-radius: 7px;
}

.forget {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 25px 0 35px 0;
  color: black;
}

#remember {
  accent-color: #fff;
}

.forget label {
  display: flex;
  align-items: center;
}

.forget label p {
  margin-left: 8px;
}

.wrapper a,
.login-wrapper a {
  color: #efefef;
  text-decoration: none;
}

.wrapper a:hover,
.login-wrapper a:hover {
  text-decoration: underline;
}

button {
  background: #50c878;
  color: white;
  font-weight: 600;
  border: none;
  padding: 12px 20px;
  cursor: pointer;
  border-radius: 3px;
  font-size: 16px;
  border: 2px solid transparent;
  transition: 0.3s ease;
}

button:hover {
  background: #50c878;
}

.input-validation,
.confirmPasswordValidation {
  color: red;
  font-size: 16px;
  text-align: start;
  margin-bottom: 20px;
  display: none;
}

.register {
  text-align: center;
  margin-top: 30px;
  color: #fff;
}
.register p,
.register a {
  color: black;
}

#ref {
  text-decoration: none;
  color: #000;
}

#ref :hover {
  color: white;
  transition: 0ms;
}
@media (max-width: 664px) {
  .wrapper {
    width: 80vw;
  }
}
