.reset {
  background-color: #F8FAFB;
}
.reset__container {
  max-width: unset;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
@media (max-width: 992px) {
  .reset__container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
.reset__left {
  width: 100%;
}
.reset__img {
  width: 100%;
  border-radius: 24px;
  overflow: hidden;
}
.reset__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.reset__right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.reset .form {
  width: 398px;
}
@media (max-width: 425px) {
  .reset .form {
    width: unset;
    max-width: 398px !important;
  }
}
.reset .form__head {
  margin-bottom: 38px;
}
.reset .form__title {
  color: #121212;
  font-family: "Nexa";
  font-size: 45px;
  font-weight: 700;
  line-height: 1.12;
  margin-bottom: 12px;
}
.reset .form__text {
  color: #121212;
  font-family: "Nexa";
  font-weight: 400;
  line-height: 1.5;
}
.reset .form form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 22px;
}
.reset .form form .group {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.reset .form form label {
  color: #121212;
  font-family: "Nexa";
  font-weight: 700;
}
.reset .form form input {
  border-radius: 10px;
  border: 1px solid #B7CBCB;
  background-color: #F8FAFB;
  padding: 16px;
  color: #6D6D6D;
  font-family: "Nexa";
  font-weight: 400;
}
.reset .form form .link {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -ms-flex-item-align: end;
      align-self: flex-end;
  color: #009090;
  font-family: "Nexa";
  font-weight: 700;
}
.reset .form form button {
  padding: 16px 0;
  border-radius: 10px;
  background-color: #009090;
  color: #F8FAFB;
  text-align: center;
  font-family: "Nexa";
  font-size: 18px;
  font-weight: 700;
  border: 1px solid #FFF;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.reset .form form button:hover {
  background-color: #FFF;
  color: #009090;
  border: 1px solid #009090;
}