html {
    scroll-behavior: smooth;
}

.bbc-header {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 16px;
  background: #fff;
  font-family: ReithSans, Helvetica, Arial, sans-serif;
}

.bbc-header-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 56px;
  border-bottom: 1px solid #e6e6e6;
}

.bbc-header-left,
.bbc-header-right {
  display: flex;
  align-items: center;
  gap: 16px;
  flex: 1;
}

.bbc-header-right {
  justify-content: flex-end;
}

.bbc-header-center {
  flex: 0 0 auto;
}

.bbc-icon-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  padding: 0;
  border: 0;
  background: transparent;
  color: #000;
  cursor: pointer;
  text-decoration: none;
}

.bbc-icon-btn svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.bbc-logo {
  display: inline-flex;
  gap: 4px;
  text-decoration: none;
}

.bbc-logo-block {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: #000;
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.02em;
}

.bbc-btn-register {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 0 14px;
  background: #000;
  color: #fff !important;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  border: 0;
}

.bbc-link-signin {
  color: #000;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
}

.bbc-header-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 4px 20px;
  padding: 12px 0 14px;
  list-style: none;
  margin: 0;
}

.bbc-header-nav a {
  color: #000;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  line-height: 1.2;
}

.bbc-header-nav a:hover,
.bbc-btn-register:hover,
.bbc-link-signin:hover {
  text-decoration: underline;
}

@media (max-width: 767px) {
  .bbc-header-nav {
    gap: 4px 12px;
    padding: 10px 0 12px;
  }

  .bbc-header-nav a {
    font-size: 13px;
  }

  .bbc-link-signin {
    display: none;
  }
}

.form-section {
    margin: 50px 0 !important;
}


.form-section .advantages-title {
    font-size: 1.8rem;
}

.form-section,
.form-section .form-wrapper,
.form-section .form-wrapper .input-wrapper {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
    justify-content: center;
}

.form-section .form-wrapper {
    width: 100%;
    gap: 15px;
    /* padding: 50px 30px; */
    box-sizing: border-box;
    /* background: #de1a1a; */
}

.form-section .form-wrapper .form-title {
    font-size: 34px;
    margin-bottom: 15px;
    margin-top: 0;
    color: white;
    text-align: center;
}

.form-section .form-wrapper .input-wrapper {
    width: 100%;
    max-width: 500px;
    gap: 3px !important;
}

.form-section .form-wrapper .input-wrapper small {
    color: #4b5563;
    text-align: left !important;
    width: 100%;
}

.form-section .form-wrapper .input-wrapper input {
    width: 100%;
    height: 50px;
    padding: 11px 15px;
    border: 0;
    font-size: 16px;
    box-sizing: border-box;
    background: white;
    border-radius: 0.5rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.form-section .form-wrapper .input-wrapper input[type="tel"] {
    width: 100%;
    padding-left: 100px !important;
}

.form-section .form-wrapper .submit_btn {
    font-family: ReithSans, Helvetica, Arial, sans-serif;
    font-size: 0.875rem;
    font-weight: 700;
    cursor: pointer;
    text-transform: none;
    height: 44px;
    padding: 0 16px;
    display: flex;
    width: 100%;
    max-width: 500px;
    box-sizing: border-box;
    align-items: center;
    justify-content: center;
    border: 0;
    background: #000;
    color: #fff;
    border-radius: 0;
}

.form_message.error.inactive,
.form_message.success.inactive {
    display: none;
}

.form_message.error.active,
.form_message.success.active {
    display: block !important;
}

.form_message {
    width: 100%;
    min-height: 50px;
    align-content: center;
    box-sizing: border-box;
    padding: 11px 15px !important;
    font-size: 16px !important;
    max-width: 500px;
    border-radius: 0.5rem;
}

.form_message.error {
    background-color: #ff7f7f;
    border: 2px dashed #ce0909;
    color: #fff;
}

.form_message.success {
    background-color: #d4ffe0;
    border: 2px dashed #1f6b34;
    color: #000;
}

@media (max-width: 480px) {
    .form_message,
    .form-section .form-wrapper .input-wrapper input {
        font-size: 14px;
    }
}