.sb-contact-form--contact-card {
  display: grid;
  grid-template-columns: 419px 1fr;
  gap: 24px;
  background: #fff;
  border-radius: 18px;
  padding: 26px 36px;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  position: relative;
  min-height: 500px;
  height: 60vh;
}
.sb-contact-form__left {
  background: linear-gradient(180deg, #0094fb 0%, #0086e0 100%);

  color: #fff;
  border-radius: 18px;
  padding: 28px;
  min-height: 380px;
  max-width: 419px;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
.sb-contact-form__left h3 {
  margin: 0 0 10px;
  font-size: 28px;
  font-weight: 500;
}
.sb-contact-form__left p {
  opacity: 0.8;
  font-weight: 500;
  font-size: 18px;
  margin-right: 5rem;
}
.sb-contact-form__email {
  opacity: 1 !important;
  display: flex;
  gap: 10px;
  align-items: center;
  font-weight: 500;
  font-size: 23px !important;
  margin-top: 8px;
}
.sb-contact-form__right {
  padding: 6px 6px 6px 0;
  display: flex;
  align-items: flex-end;
}
.sb-contact-form__form {
  width: 100%;
}
.sb-contact-form__notice {
  padding: 10px 12px;
  border-radius: 12px;
  margin: 0 0 14px;
  font-size: 14px;
}
.sb-contact-form__right--success {
  align-items: flex-start !important;
}
.sb-contact-form__notice--success {
  background: #e8fff1;
  color: #218d47;
}
.sb-contact-form__notice--error {
  background: #fff0f0;
  color: #842029;
}
.sb-contact-form__grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 40px;
}
.sb-contact-col-6 {
  grid-column: span 6;
}
.sb-contact-col-12 {
  grid-column: span 12;
}
.sb-contact-form__field label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: #000;
}
.sb-contact-form__field input,
.sb-contact-form__field textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.25);
  padding: 10px 2px;
  font-size: 14px;
  outline: none;
  background: transparent;
}
.sb-contact-form__field input:focus,
.sb-contact-form__field textarea:focus {
  border-bottom-color: #0094fb;
}
.sb-contact-form__actions {
  display: flex;
  justify-content: flex-end;
  margin-top: 22px;
}
.sb-contact-form__submit {
  background: #0094fb;
  color: #fff;
  border: 0;
  border-radius: 25px;
  padding: 12px 22px;
  width: 214px;
  height: 54px;
  font-weight: 500;
  letter-spacing: normal;
  cursor: pointer;
}
@media (max-width: 900px) {
  .sb-contact-form--contact-card {
    grid-template-columns: 1fr;
    height: unset;
  }

  .sb-contact-form__left {
    min-height: auto;
    max-width: unset;
  }
}
@media (max-width: 768px) {
  .sb-contact__header {
    margin-bottom: 0 !important;
  }
  .sb-contact__card {
    margin-top: 15px !important;
  }
  .sb-contact__title {
    font-size: 30px;
    line-height: 1;
  }
  .sb-contact-form--contact-card {
    display: flex;
    flex-direction: column;
    height: unset;
    padding: 15px;
  }
  .sb-contact-form__grid {
    display: flex;
    flex-direction: column;
    gap: 24px;
  }
  .sb-contact-form__left {
    padding: 18px;
  }
  .sb-contact-form__left p {
    opacity: 0.8;
    font-weight: 500;
    font-size: 18px;
    margin-right: 0;
  }
  .sb-contact-form__right {
    padding: 15px;
  }
  .sb-contact-form__actions {
    justify-content: center;
  }
  .sb-contact-form__right--success {
    padding: 0 !important;
  }
}
