.text_bez_right {
  padding: 0;
  margin: 0;
}

.align-center {
  text-align: center;
}

.form-wrap {
    padding: 36px;
    max-width: 480px;
    margin: auto;
}

.auth-form {
  max-width: 400px;
  margin: 0 auto;
}

.auth-form input[type="text"],
.auth-form input[type="password"],
.auth-form input[type="email"] {
  width: 100%;
  border-radius: 4px;
  height: 36px;
}

.auth-form input[type="checkbox"] {
  width: 16px;
  height: 16px;
  accent-color: #af6349;
}

.form-checkbox {
  display: flex;
  align-items: center;
  gap: 8px;
}

.form-checkbox--center {
  justify-content: center;
}

.form-label {
  margin: 0;
}

.form-fieldset {
  margin-bottom: 16px;
}

.form-fieldset.form-fieldset--submit {
  margin-top: 24px;
  margin-bottom: 24px;
}

.form-links {
  text-align: center;
}

.form-links a {
  color: #0e0e0e;
  text-decoration: underline;
  font-size: 14px;
}

.form-links a:hover {
  color: #CB856C;
}

label.error {
  display: block;
  font-size: 14px;
  color: #F44336;
  padding: 4px 0 0 0;
}

.response-message {
  padding: 16px;
  border-radius: 8px;
  margin: 26px 0;
  font-size: 14px;
  text-align: center;
  background: #f2f2f2;
  border: 1px solid #d1d1d1;
  text-wrap: balance;
}

.response-message:empty {
  display: none;
}

.response-message.warning {
  background: #ffefdc;
  border: 1px solid #ffe5c4;
}

.response-message.error {
  background: #ffdce2;
  border: 1px solid #ffc4cd;
}

.response-message.success {
  background: #f2f8ea;
  border: 1px solid #d3e7bc;
}

.social-login {
    display: flex;
    justify-content: center;
    margin-bottom: 16px;
    padding-top: 16px;
    border-top: 1px solid #eee;
}

.btn--google {
    background: #4284F3;
    border: none;
    color: white;
    gap: 10px;
    padding: 0 12px 0 4px;
    border-radius: 3px;
    font-size: 14px;
    font-weight: 400;
    height: 42px;
    transition: all .1s;
}

.btn--google .icon {
    padding: 8px;
    display: flex;
    width: 34px;
    height: 34px;
    background: #fff;
    border-radius: 2px;
    align-items: center;
    justify-content: center;
}

.btn--google:hover {
  background: #7ea3f1;
  color: white;
}