.auth-form {
  max-width: 900px;
  margin: 0 auto;
  background: white;
  border-radius: 16px;
  padding: 46px 40px 40px 40px;
  width: 100%;
  box-shadow: 0 24px 100px #00283c2e;
}

.auth-form h1 {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 37px;
}

.auth-fields {
  width: 100%;
  display: flex;
  gap: 40px;
  margin-bottom: 30px;
}

.auth-fields.auth-mb-0 {
  margin-bottom: 0;
}

.auth-field,
.auth-password-field {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
}

.auth-field label,
.auth-password-field label {
  color: #00283cad;
  font-size: 18px;
  font-weight: 600;
}

.auth-field > input,
.auth-password-field input {
  width: 100%;
  height: 60px;
  border: 1px solid #00283c38;
  border-radius: 16px;
  padding: 0 20px;
  font-size: 18px;
  color: #00283c;
  outline: none;
}

.auth-field input::placeholder,
.auth-password-field input::placeholder {
  color: #00283c50;
}

.auth-error {
  border-color: red !important;
}

.auth-form-error-message {
  color: #cd5252;
}

.auth-form-error-message:empty {
  display: none;
}

.auth-wrapper-o {
  display: flex;
  justify-content: space-between;
  width: 100%;
  align-items: center;
  padding: 20px 0;
}

.auth-checkbox {
  display: flex;
  gap: 6px;
  align-items: center;
  font-size: 18px;
  color: #00283cad;
  font-weight: 600;
}

.auth-checkbox label {
  cursor: pointer;
}

.auth-checkbox input {
  width: 20px;
  height: 20px;
  cursor: pointer;
  flex-shrink: 0;
}

.auth-phone-input {
  position: relative;
  display: flex;
  width: 100%;
  height: 60px;
  border: 1px solid #00283c38;
  border-radius: 16px;
  padding: 0 20px;
  font-size: 18px;
  color: #00283c;
  align-items: center;
}

.auth-phone-input > input {
  border: none;
  outline: none;
  background: transparent;
  font-size: 18px;
  font-weight: 600;
  width: 100%;
}

.auth-submit-button {
  border: none;
  width: 100%;
  border-radius: 16px;
  height: 60px;
  max-width: 100%;
  color: black;
  font-size: 18px;
  font-weight: 600;
  background-color: #ffba1a;
}

.auth-submit-button:not(:disabled):hover {
  background-color: #ff941a;
}

.auth-link1 {
  text-align: center;
  margin-top: 20px;
}

.auth-link1 a {
  color: #52b8cd;
  font-weight: 600;
}

.auth-link1 button {
  color: #52b8cd;
  font-size: inherit;
  cursor: pointer;
  font-weight: 600;
  background-color: transparent;
  border: none;
  outline: none;
}

.auth-link1 a:hover,
.auth-link1 button:hover {
  text-decoration: underline;
}

.auth-wrapper-o .auth-link1 {
  margin: 0;
}

@media screen and (max-width: 768px) {
  .auth-form {
    box-shadow: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    flex: 1 1 auto;
  }

  .auth-form h1 {
    margin-bottom: 28px;
  }

  .auth-field label,
  .auth-password-field label {
    font-size: 16px;
  }

  .auth-field > input,
  .auth-password-field input,
  .auth-phone-input {
    height: 45px;
    border-radius: 12px;
    padding-left: 15px;
    font-size: 16px;
  }

  .auth-fields {
    gap: 24px;
    margin-bottom: 28px;
  }

  .auth-checkbox {
    gap: 15px;
    align-items: start;
  }

  .auth-wrapper-o {
    line-height: 22px;
    padding: 30px 0;
  }

  .auth-submit-button {
    height: 45px;
    border-radius: 12px;
    /* margin-top: auto; */
  }

  .auth-link1 {
    margin-top: 24px;
  }
}

@media screen and (max-width: 640px) {
  .auth-fields {
    flex-direction: column;
  }
}

.auth-form-success-message {
  color: #52cd52;
  text-align: center;
  margin: 20px 0;
}

.auth-confirmation-message {
  text-align: center;
  margin: 2rem 0;
  line-height: 1.6;
}

.auth-centered-header {
  text-align: center;
}
