@import url("https://fonts.googleapis.com/css2?family=Spectral:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;0,800;1,200;1,300;1,400;1,500;1,600;1,700;1,800&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Spectral", serif;
}

body {
  display: flex;
  width: 100%;
  justify-content: center;
  align-items: center;
}

form {
  position: relative;
  display: flex;
  width: 100%;
  max-width: 709px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: 50px 0;
  padding: 25px 56px;
  background: #ffffff;
  box-shadow: 0px 0px 23px 10px rgba(0, 178, 255, 0.25);
  border-radius: 26px;
}

.back {
  position: absolute;
  left: 30px;
  top: 30px;
  width: 34px;
  height: 34px;
  cursor: pointer;
}

.back img {
  height: 100%;
}

.formIcon {
  display: flex;
  width: 90px;
  justify-content: center;
  align-items: center;
  text-align: center;
  margin-bottom: 22px;
}

.formIcon img {
  width: 100%;
}

.form_title {
  display: flex;
  width: 100%;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-style: normal;
  font-weight: 500;
  font-size: 40px;
  line-height: normal;
  color: #000000;
}

.form_subtitle {
  display: flex;
  width: 100%;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-style: normal;
  font-weight: 400;
  font-size: 30px;
  line-height: normal;
  text-align: center;
  margin-bottom: 25px;
  color: #000000;
}

input {
  display: flex;
  width: 100%;
  justify-content: center;
  align-items: center;
  text-align: left;
  padding: 10px 0px;
  outline: none;
  border: none;
  background: none;
  margin-bottom: 45px;
  border-bottom: 2px solid #0097ec;

  font-style: normal;
  font-weight: 400;
  font-size: 25px;
  line-height: 38px;
  color: black;
}

.eLL {
  position: relative;
  display: flex;
  width: 100%;
  justify-content: center;
  align-items: center;
}

.eyes {
  position: absolute;
  width: 30px;
  justify-content: center;
  align-items: center;
  text-align: center;
  right: 10px;
  bottom: 50%;
  transition: linear 0.3s;
}

.eyes1 {
  visibility: hidden;
  opacity: 0;
  transition: linear 0.3s;
}

.eyes_acrive .eyes1 {
  visibility: visible;
  opacity: 1;
  transition: linear 0.3s;
}

.eyes_acrive .eyes2 {
  visibility: hidden;
  opacity: 0;
  transition: linear 0.3s;
}

.eyes img {
  width: 100%;
}
.error_text {
  display: flex;
  width: 100%;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-style: normal;
  font-weight: 400;
  font-size: 25px;
  line-height: 38px;
  color: red;
}

.error {
  border-bottom: 2px solid #ec0000;
}

button {
  display: flex;
  padding: 12px 50px;
  font-style: normal;
  font-weight: 500;
  font-size: 25px;
  line-height: 30px;
  text-align: center;
  cursor: pointer;
  outline: none;
  border: none;
  background: none;
  margin-bottom: 90px;
  color: #ffffff;

  background: #00b2ff;
  border-radius: 50px;
}

@media screen and (max-width: 700px) {
  .back {
    left: 15px;
    top: 15px;
    width: 24px;
    height: 24px;
  }

  form {
    max-width: 90%;
    padding: 10px 20px;
  }

  .formIcon {
    width: 50px;
    margin-bottom: 12px;
  }
  .form_title {
    font-size: 30px;
  }

  .form_subtitle {
    font-size: 20px;
    margin-bottom: 15px;
  }
  input {
    margin-bottom: 25px;
    font-size: 18px;
  }

  button {
    font-size: 18px;
    padding: 8px 30px;
    margin-bottom: 25px;
  }
}
