.auth-section {
  position: fixed;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  overflow: auto;
}

.auth-section__form {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 40px 0;
  overflow: auto;
  padding: 32px 16px;
  min-height: fit-content;
}

.auth-section__logo {
  margin-bottom: 32px;
}

.auth-section__title {
  font-size: 28px;
  font-weight: 600;
  line-height: 120%;
  margin-bottom: 24px;
}

.auth-section__description {
  color: #767676;
  font-size: 18px;
  font-weight: 400;
  line-height: 150%;
  margin-bottom: 28px;
}

.auth-input {
  border-radius: 16px;
  background: #F4F4F4;
  box-shadow: 0px 2px 18px 0px rgba(0, 0, 0, 0.02);
  width: 100%;
  display: block;
  padding: 0 20px;
  height: 54px;
  border: none;
  font-size: 18px;
}

.auth-input::placeholder {
  color: #A3A4A9;
  font-size: 18px;
  font-weight: 400;
}

.auth-input__wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 8px 0;
}

.auth-input__message {
  font-size: 16px;
  line-height: 150%;
  color: #767676;
}

.auth-input__message + .auth-input {
  margin-top: 28px;
}

.auth-section__form-info-text {
  font-size: 12px;
  line-height: 140%;
  color: #767676;
  text-align: center;
}

.auth-section__form-info-text  .orange_text {
  text-decoration: underline;
}


.auth-section__btn {
  display: flex;
  height: 54px; 
  justify-content: center;
  align-items: center;
  border-radius: 16px;
  background: linear-gradient(180deg, #FF9200 0%, #FF6F00 100%), #F6A717;
  border: none;
  width: 100%;
  color: #FFFFFF;
  font-weight: 700;
}

.auth-section__btn:disabled {
  opacity: .6;
}

.auth-section__form-bottom {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.auth-section__form-questions {
  padding-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.auth-section__form-questions-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  color: #767676;
  font-size: 14px;
  line-height: 140%;
}

.back-button {
  margin-bottom: 10px;
  display: block;
}

.auth-section__form-promoblock {
	border-radius: 16px;
    background: #F4F4F4;
	padding: 16px;
	border: 1px solid #FF6F00;
}
	.auth-section__form-promoblock .link_add {
		height: 54px;
	}

/* im-input */
[v-cloak] {
    display: none;
}

.im-input {
    position: relative;
}

.im-button {
    padding: 0;
    margin: 0;
    border: none;
    background-color: transparent;
}

.im-input .auth-input {
    padding-left: 50px;
}

.im-input__toggle {
    position: absolute;
    left: 20px;
    top: 50%;
    translate: 0 -50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.im-input__dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1;
    padding: 10px 0;
    margin: 10px 0 0;
    min-width: 200px;
    list-style: none;
    border-radius: 10px;
    background: #F4F4F4;
    box-shadow: 0px 2px 18px 0px rgba(0, 0, 0, 0.02);
}

.im-input__dropdown-button {
    display: grid;
    grid-template-columns: repeat(3, max-content);
    gap: 5px;
    align-items: center;
    width: 100%;
    padding: 10px;
    transition-property: color, background-color;
    transition-duration: 0.3s;
}

.im-input__dropdown-button:hover {
    background-color: #F6A717;
    color: #fff;
}
