.auth {
  padding: 60px 0 80px;
  background: #f8f7fb;
}

.auth__inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
}

.auth__title {
  margin: 0 0 32px;
  font-size: 40px;
  font-weight: 700;
  color: #231638;
}

/* две карточки */

.auth__grid {

  gap: 32px;
  justify-items: center;
}

/* карточка входа/регистрации */

.auth-card {
  width: 100%;
  max-width: 420px;
  background-image: url('../images/salesBackground.jpg');
  background-size: cover;
  border-radius: 18px;
  padding: 32px 30px 28px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
  color: #ffffff;
  text-align: left;
}

.auth-card__title {
  margin: 0 0 22px;
  font-size: 28px;
  font-weight: 700;
}

/* поля */

.auth-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.auth-field__label {
  display: block;
  margin-bottom: 4px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
}

.auth-field__wrap {
  position: relative;
}

.auth-input {
  width: 100%;
  padding: 11px 38px 11px 14px;
  border-radius: 8px;
  border: none;
  background: rgba(6, 0, 32, 0.45);
  color: #ffffff;
  font-size: 14px;
  outline: none;
}

.auth-input::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.auth-input:focus {
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.35);
}

/* иконка глаза */

.auth-eye {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.16);
  cursor: pointer;
}

/* чекбокс и ссылка */

.auth-form__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  margin-top: 4px;
}

.auth-check {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: rgba(255, 255, 255, 0.85);
}

.auth-check input {
  width: 14px;
  height: 14px;
}

.auth-link {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
}

/* кнопка */

.auth-btn {
  margin-top: 10px;
  width: 100%;
  height: 46px;
  border-radius: 10px;
  border: none;
  background: #ffba1a;
  color: #3b2500;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
}

/* адаптив */

@media (max-width: 900px) {
  .auth__grid {
    grid-template-columns: 1fr;
  }

  .auth__title {
    font-size: 32px;
  }
}
.reset {
  padding: 60px 0 80px;
  background: #f8f7fb;
}

.reset__inner {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
}

.reset__title {
  margin: 0 0 32px;
  font-size: 40px;
  font-weight: 700;
  color: #231638;
}

/* карточка */

.reset-card {
  margin: 0 auto;
  max-width: 760px;
  text-align: left;
  padding: 32px 34px 28px;
  border-radius: 20px;
  background-image: url('../images/salesBackground.jpg');
  background-size: cover;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
  color: #ffffff;
}

.reset-card__title {
  margin: 0 0 16px;
  font-size: 32px;
  font-weight: 700;
}

.reset-card__text {
  margin: 0 0 24px;
  font-size: 14px;
  line-height: 1.7;
  max-width: 620px;
}

/* форма */

.reset-form {
  max-width: 520px;
}

.reset-field__label {
  display: block;
  margin-bottom: 6px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
}

.reset-input {
  width: 100%;
  padding: 11px 14px;
  border-radius: 10px;
  border: none;
  background: rgba(6, 0, 32, 0.45);
  color: #ffffff;
  font-size: 14px;
  outline: none;
}

.reset-input::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.reset-input:focus {
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.35);
}

/* кнопка */

.reset-btn {
  margin-top: 18px;
  padding: 11px 32px;
  border-radius: 10px;
  border: none;
  background: #ffba1a;
  color: #3b2500;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
}

/* адаптив */

@media (max-width: 700px) {
  .reset__title {
    font-size: 32px;
  }

  .reset-card {
    padding: 26px 20px 24px;
  }
}
.change-pass {
  padding: 60px 0 80px;
  background: #f8f7fb;
}

.change-pass__inner {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
}

.change-pass__title {
  margin: 0 0 32px;
  font-size: 40px;
  font-weight: 700;
  color: #231638;
}

/* карточка */

.change-pass__card {
  margin: 0 auto;
  max-width: 540px;
  text-align: center;
  padding: 30px 34px 26px;
  border-radius: 20px;
background-image: url('../images/salesBackground.jpg');
background-size: cover;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
  color: #ffffff;
}

.change-pass__card-title {
  margin: 0 0 20px;
  font-size: 32px;
  font-weight: 700;
}

/* форма */

.change-pass__form {
  display: flex;
  flex-direction: column;
  gap: 14px;
  text-align: left;
}

.change-pass__label {
  display: block;
  margin-bottom: 4px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
}

.change-pass__wrap {
  position: relative;
}

.change-pass__input {
  width: 100%;
  padding: 11px 38px 11px 14px;
  border-radius: 10px;
  border: none;
  background: rgba(6, 0, 32, 0.55);
  color: #ffffff;
  font-size: 14px;
  outline: none;
}

.change-pass__input::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.change-pass__input:focus {
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.35);
}

/* иконка глаза */

.change-pass__eye {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.16);
  cursor: pointer;
}

/* кнопка */

.change-pass__btn {
  margin-top: 16px;
  width: 100%;
  height: 46px;
  border-radius: 10px;
  border: none;
  background: #ffba1a;
  color: #3b2500;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
}

/* адаптив */

@media (max-width: 700px) {
  .change-pass__title {
    font-size: 32px;
  }

  .change-pass__card {
    padding: 26px 20px 24px;
  }
}
