html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  /*font-size: 100%;*/
  /*font: inherit;*/
  /*vertical-align: baseline;*/
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

.btn {
  padding: 10px 15px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: -moz-fit-content;
  width: fit-content;
  flex-shrink: 0;
  border: none;
  font-family: "Inter", "verdana", "sans-serif";
  font-size: 16px;
  line-height: 1;
  color: #051F1C;
  text-decoration: none;
  background: var(--color-gray-light, #EFF1F1);
  border-radius: 8px;
  cursor: pointer;
}
.btn__icon {
  margin: 0 6px 0 0;
  width: 20px;
  height: 20px;
}
.btn__icon_right {
  margin: 0 0 0 6px;
}
.btn__icon svg {
  width: 100%;
  height: 100%;
}
.btn:hover:not(:disabled):not([aria-disabled=true]) {
  background-color: #FFFFFF;
  transition: 0.1s ease-in;
}
.btn:not(:hover) {
  transition: 0.15s ease-out;
}
.btn_accent {
  color: #FFFFFF;
  background: var(--accent-color, #00AD5A);
}
.btn_accent:hover:not(:disabled):not([aria-disabled=true]) {
  background-color: var(--hover-color-light, #00c767);
  transition: 0.1s ease-in;
}
.btn_accent-bordered {
  color: var(--accent-color, #00AD5A);
  background: transparent;
  border: 1px solid var(--accent-color, #00AD5A);
}
.btn_accent-bordered:hover:not(:disabled):not([aria-disabled=true]) {
  background: transparent;
  transition: 0.1s ease-in;
}
.btn_transparent {
  padding: 0;
  color: var(--accent-color, #00AD5A);
  background: none;
}
.btn_transparent:hover:not(:disabled):not([aria-disabled=true]) {
  color: var(--hover-color-dark, #008847);
  background: none;
  box-shadow: none;
}
.btn:focus-visible {
  box-shadow: var(--focus-shadow-accent, 0 0 0 4px rgba(0, 173, 90, 0.25));
  outline: none;
}
.btn:disabled, .btn[aria-disabled=true] {
  opacity: 0.6;
  cursor: auto;
}

.btn-link {
  display: inline-block;
  padding: 4px 0;
  font-size: 16px;
  color: var(--accent-color, #00AD5A);
  font-family: inherit;
  background: none;
  border: none;
  cursor: pointer;
  text-decoration: none;
}
.btn-link > span {
  border-bottom: 1px var(--accent-color, #00AD5A) dashed;
}
.btn-link > span:hover {
  border-bottom-style: solid;
}
.btn-link_solid > span {
  border-bottom-style: solid;
}
.btn-link_solid > span:hover {
  border-bottom-style: dashed;
}
.btn-link_dashed > span {
  border-bottom-style: dashed;
}
.btn-link_dashed > span:hover {
  border-bottom-style: solid;
}
.btn-link[aria-selected=true] {
  color: #637371;
  font-weight: 700;
}
.btn-link[aria-selected=true] > span {
  border: none;
}
.btn-link[aria-selected=true] > span:hover {
  border: none;
}

.btn-icon {
  display: inline-flex;
  align-items: center;
  padding: 2px;
  background: none;
  border: none;
  cursor: pointer;
}
.btn-icon:focus {
  outline: none;
}
.btn-icon:focus-visible {
  box-shadow: 0 0 0 4px var(--accent-color, #00AD5A);
  outline: none;
  border-radius: 2px;
}

.field-feedback {
  font-size: 14px;
  line-height: 20px;
  font-weight: 400;
  color: black;
  margin-top: 4px;
  padding: 8px 8px 8px 12px;
  border-radius: 4px;
  border-left: 4px solid #4F9AFF;
  background-color: rgba(79, 154, 255, 0.1019607843);
  transition: all 0.15s ease;
}
.field-feedback_warning {
  border-left-color: #B88100;
  background-color: rgba(184, 129, 0, 0.1019607843);
}
.field-feedback.is-hidden {
  opacity: 0;
  visibility: hidden;
  max-height: 0;
  overflow: hidden;
  margin: 0;
  padding: 0;
}

.main {
  background-color: #F8F8F8;
  display: flex;
  flex-direction: column;
  font-size: 16px;
  line-height: 20px;
  font-weight: 400;
}
@media (min-width: 970px) {
  .main {
    flex-direction: row;
    justify-content: center;
    gap: 40px;
    padding: 40px;
  }
}

.agents-section {
  background: var(--radial-gradient, radial-gradient(100% 716.45% at 0% 100%, #F2EFE3 0%, #E3EEDD 48.44%, #DDEEE6 100%));
}
@media (min-width: 970px) {
  .agents-section {
    border-radius: 20px;
  }
}
.agents-section__container {
  padding: 40px 16px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
}
@media (min-width: 970px) {
  .agents-section__container {
    max-width: 560px;
  }
}
@media (min-width: 576px) {
  .agents-section__container {
    padding: 40px 60px;
  }
}
@media (min-width: 970px) {
  .agents-section__container {
    padding: 40px 40px 80px 40px;
  }
}
.agents-section__header {
  display: flex;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  gap: 8px;
  margin: 0 -16px;
  padding: 0 16px;
  /* Chrome, Safari, Opera */
}
.agents-section__header::-webkit-scrollbar {
  display: none;
}
.agents-section__header {
  /* IE + Edge */
  -ms-overflow-style: none;
  /* Firefox */
  scrollbar-width: none;
}
@media (min-width: 576px) {
  .agents-section__header {
    margin: 0 -60px;
    padding: 0 60px;
  }
}
.agents-section__header > * {
  flex-shrink: 0;
}
.agents-section .common-button {
  width: 36px;
  height: 36px;
  padding: 8px;
  border-radius: 50%;
}
.agents-section .common-button img {
  filter: brightness(0) saturate(100%) invert(63%) sepia(3%) saturate(968%) hue-rotate(121deg) brightness(87%) contrast(89%);
}
.agents-section__tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-right: auto;
}
.agents-section__panel {
  display: none;
  animation: all 0.15s ease;
}
.agents-section__panel.active {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.agents-section__title {
  font-size: 28px;
  line-height: 36px;
  font-weight: 700;
}
@media (max-width: 576px) {
  .agents-section__title {
    font-size: 24px;
    line-height: 32px;
  }
}
.agents-section__title {
  margin-bottom: 0;
  color: #051F1C;
}

.feature-block__title {
  font-size: 16px;
  line-height: 20px;
  font-weight: 700;
  margin-bottom: 12px;
}
.feature-block__list {
  list-style: none;
}
.feature-block__list_numbered {
  list-style: decimal inside;
}
.feature-block__list_dotted {
  list-style: disc inside;
}
.feature-block__item {
  margin: 0;
  padding: 0;
}

@media (min-width: 576px) {
  .register-section {
    padding: 40px 60px;
  }
}
@media (min-width: 970px) {
  .register-section {
    padding: 0;
  }
}
.register-section__container {
  background-color: #FFFFFF;
  padding: 40px 16px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
}
@media (min-width: 970px) {
  .register-section__container {
    max-width: 560px;
  }
}
@media (min-width: 576px) {
  .register-section__container {
    padding: 40px;
    border-radius: 20px;
  }
}
.register-section__title {
  font-size: 28px;
  line-height: 36px;
  font-weight: 700;
}
@media (max-width: 576px) {
  .register-section__title {
    font-size: 24px;
    line-height: 32px;
  }
}
.register-section__title {
  text-align: center;
  margin-bottom: 0;
  color: #051F1C;
}

.register-form {
  display: flex;
  flex-direction: column;
}
.register-form .form-input {
  max-width: none;
}
.register-form .form-input:has(input:disabled, textarea:disabled) {
  opacity: 0.5;
}
.register-form .form-input_info {
  min-height: 52px;
  height: auto;
}
.register-form .form-input_info textarea.form-input__field {
  resize: none;
  overflow: hidden;
  min-height: 52px;
  height: auto;
}
@supports (field-sizing: content) {
  .register-form .form-input_info textarea.form-input__field {
    field-sizing: content;
  }
}
.register-form .form-input-wrap {
  transition: all 0.15s ease;
}
.register-form .form-input-wrap:not(:first-child) {
  margin-top: 8px;
}
.register-form .form-input-wrap.hidden {
  margin-top: 0;
  opacity: 0;
  visibility: hidden;
  max-height: 0;
  overflow: hidden;
}
.register-form .form-input__field:focus {
  border-color: #637371;
}
.register-form .form-input__field:user-invalid {
  border-color: #C0C7C6;
}
.register-form .form-input__field:user-invalid:focus, .register-form .form-input__field:user-invalid:hover {
  border-color: #637371;
}
.register-form .form-input__field:required ~ .form-input__label::after {
  color: currentColor;
}
.register-form .form-input__clear img {
  filter: brightness(0) saturate(100%) invert(62%) sepia(7%) saturate(389%) hue-rotate(121deg) brightness(89%) contrast(84%);
}
.register-form .iw-checkbox {
  margin-top: 20px;
}
.register-form .iw-checkbox__label {
  font-size: 14px;
  line-height: 16px;
  font-weight: 400;
  color: #051F1C;
  margin-left: 12px;
}
.register-form .common-button {
  width: 100%;
  margin-top: 20px;
}
.register-form a:focus {
  outline: none;
}
.register-form a:focus-visible {
  border-color: transparent;
  outline: none;
  border-radius: 8px;
  box-shadow: 0 0 0 1px #051F1C;
}
.register-form .field-feedback:not(.is-hidden) {
  margin-top: 20px;
}