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

.form__input,
.form__result,
.form__button,
.form__conditions {
  max-width: 582px;
}

@media (max-width: 1280px) {
    .form__input,
    .form__result,
    .form__button,
    .form__conditions {
        max-width: 100%;
    }
}

.form__title {
  font-weight: 400;
  font-size: 60px;
  line-height: 66px;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
  max-width: 1024px;
}

@media (max-width: 767px) {
    .form__title {
        font-size: 34px;
        line-height: 36px;
        margin-bottom: 18px;
    }
}

.form__text {
  font-weight: 400;
  font-size: 23px;
  line-height: 30px;
  margin-bottom: 30px;
}

@media (max-width: 767px) {
    .form__text {
        font-size: 17px;
        line-height: 21px;
        margin-bottom: 10px;
    }
}

.form__input {
    margin-bottom: 24px;
}

.input-text input {
    font-family: TTFirs, sans-serif;
    font-size: 17px;
    font-weight: 400;
    line-height: 21px;
    color: #000;
    width: 100%;
}

.form__button {
  margin-bottom: 16px;
}

.form__conditions {
  font-weight: 400;
  font-size: 14px;
  line-height: 18px;
  letter-spacing: 0.01em;
  color: #0e0e0e;
}

.form__conditions span {
    opacity: .5;
}

.form__conditions a {
    text-decoration: underline;
    opacity: .5;
    transition: opacity .3s;
}

.form__conditions a:hover {
     opacity: .7;
 }

.default-button {
    font-size: 14px;
    font-weight: 500;
    line-height: 18px;
    letter-spacing: .03em;
    display: inline-block;
    background-color: #000;
    color: #fff;
    width: 100%;
    text-align: center;
    text-transform: uppercase;
    border-radius: 3px;
    padding: 18px 0;
    opacity: 1;
    transition: opacity .3s;
}

.default-button:hover {
    opacity: .7;
}

.input-text._underline {
    position: relative;
    border-bottom: 1px solid #000;
}

.input-text {
    width: 100%;
    padding: 13px 0;
    transition: all .3s;
}

.code {
  margin: 30px 0;
}

.auth-text {
  font-weight: 400;
  font-size: 23px;
  line-height: 30px;
}

@media (max-width: 767px) {
    .auth-text {
        font-size: 17px;
        line-height: 21px;
    }
}

.auth-help-links {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.auth-help-links a {
  font-weight: 400;
  font-size: 17px;
  line-height: 124%;
  color: #0e0e0e;
  text-decoration: underline;
}

.auth-help-links a {
  opacity: .8;
}

input[type=number]::-webkit-outer-spin-button,
input[type=number]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type=number] {
  -moz-appearance: textfield;
}

.err-block {
  margin: 0 0 15px;
  font-size: 17px;
  line-height: 21px;
  color: #ef3838;
}

.result {
  margin: 30px 0 0;
}

.result-block .balance {
  margin-bottom: 15px;
}

.balance-name,
.balance-nearest__name {
  font-weight: 400;
  font-size: 23px;
  line-height: 30px;
}

.balance-available,
.balance-nearest__total,
.balance-nearest__date {
  font-size: 17px;
  line-height: 124%;
}

.club_check .result-block {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 15px;
}

.club_check .default-button.form__button:disabled {
  opacity: .7;
}
