.b-intro-text-2 {
  position: relative;
}
.b-intro-text-2__box {
  padding: 0 9rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: #fff;
}
@media all and (max-width: 768px) {
  .b-intro-text-2__box {
    padding: 0 1.5rem;
  }
}
.b-intro-text-2__left {
  position: relative;
  display: flex;
  padding: 2.5rem 1rem 1.5rem 1rem;
  z-index: 15;
}
.b-intro-text-2__right {
  position: relative;
  padding: 2rem 2rem 2rem 1rem;
  z-index: 15;
}
.b-intro-text-2__title > h1, .b-intro-text-2__title > h2 {
  font-size: 3rem;
  font-weight: 800;
  line-height: 2.8rem;
}
.b-intro-text-2__caption {
  font-size: 1.1rem;
}
.b-intro-text-2__text {
  text-align: justify;
}
@media all and (max-width: 1400px) {
  .b-intro-text-2__title > h1, .b-intro-text-2__title > h2 {
    font-size: 2.5rem;
    line-height: 2.2rem;
  }
}
@media all and (max-width: 1024px) {
  .b-intro-text-2__title > h1, .b-intro-text-2__title > h2 {
    font-size: 2rem;
    line-height: 1.8rem;
  }
}
@media all and (max-width: 768px) {
  .b-intro-text-2__box {
    display: block;
  }
  .b-intro-text-2__left {
    justify-content: flex-start;
  }
  .b-intro-text-2__right {
    padding: 0 1rem 0.5rem;
  }
  .b-intro-text-2__title {
    text-align: left;
  }
  .b-intro-text-2__title br {
    display: none;
  }
  .b-intro-text-2__text {
    max-width: 100%;
  }
}
@media all and (max-width: 480px) {
  .b-intro-text-2__title > h1, .b-intro-text-2__title > h2 {
    font-size: 2rem;
    line-height: 2rem;
  }
}

.b-form__title {
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--font-color-major);
  margin: 0 0 1.5rem;
}
.b-form__title_al-c {
  text-align: center;
}
.b-form__subtitle {
  font-size: 0.9rem;
  font-weight: 500;
}
.b-form__field {
  margin: 0 0 0.75rem;
}
.b-form__label {
  display: block;
  font-size: 1.25rem;
  color: var(--font-color-major);
  margin: 0 0 0.25rem;
  padding: 0 0 0 1rem;
  font-weight: 500;
}
.b-form__label_al-l {
  padding: 0;
}
.b-form__input {
  display: flex;
  width: 100%;
  font-size: 1.1rem;
  border: 1px solid var(--font-color-major);
  padding: 0 1rem;
  height: 2.5rem;
  justify-content: center;
  align-items: center;
}
.b-form__input.error {
  border: 1px solid red;
}
.b-form__input::-webkit-input-placeholder {
  opacity: 1;
  color: #e0e0e0;
}
.b-form__input:-moz-placeholder {
  opacity: 1;
  color: #e0e0e0;
}
.b-form__input:-ms-placeholder {
  opacity: 1;
  color: #e0e0e0;
}
.b-form__input::-moz-placeholder {
  opacity: 1;
  color: #e0e0e0;
}
.b-form__select {
  display: flex;
  width: 100%;
  border: 1px solid #ced4da;
  padding: 0 10px;
  height: 46px;
  justify-content: center;
  align-items: center;
}
.b-form__select.error {
  border: 1px solid red;
}
.b-form__alert {
  color: red;
  margin: 0 0 0.75rem;
}
.b-form__error {
  font-size: 0.75rem;
  color: red;
}
.b-form__error:empty {
  padding: 0;
}
.b-form__success {
  font-size: 1rem;
  font-weight: 600;
  text-align: center;
}
.b-form__text {
  font-size: 1.1rem;
  margin: 0 0 2rem;
}
.b-form__text ul {
  list-style: none;
  margin-left: 1rem;
}
.b-form__text ul > li {
  position: relative;
  padding: 0 0 0 1rem;
  margin: 0 0 0.25rem;
}
.b-form__text ul > li:before {
  position: absolute;
  top: 0.6rem;
  left: 0;
  width: 0.25rem;
  height: 0.25rem;
  border-radius: 100%;
  background: var(--font-color-major);
  box-sizing: border-box;
  content: "";
}
.b-form__submit {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
}
.b-form__submit_al-l {
  justify-content: flex-start;
}
.b-form__button {
  cursor: pointer;
  position: relative;
  display: inline-flex;
  border: none;
  height: 3.7rem;
  font-size: 1.2rem;
  padding: 0;
  color: #fff;
  background: none;
  text-decoration: none;
}
.b-form__button:after {
  position: absolute;
  top: 0;
  left: 100%;
  bottom: 0;
  width: 0.8rem;
  background: #474747;
  transition: 0.45s cubic-bezier(0.4, 0, 0, 1);
  content: "";
}
.b-form__button:hover div:after, .b-form__button:hover div:before {
  transform: scale(1);
}
.b-form__button:hover div:after {
  background: #fff;
}
.b-form__button span {
  display: flex;
  align-items: center;
  background: #474747;
  height: 100%;
  padding: 0 0.5rem 0 2rem;
  transition: 0.45s cubic-bezier(0.4, 0, 0, 1);
}
.b-form__button div {
  position: relative;
  width: 3.7rem;
  height: 3.7rem;
}
.b-form__button div svg {
  display: block;
  width: auto;
  height: 100%;
  text-decoration: none;
  fill: #474747;
  transition: fill 0.45s cubic-bezier(0.4, 0, 0, 1);
}
.b-form__button div:after, .b-form__button div:before {
  content: "";
  display: block;
  position: absolute;
  border-radius: 50%;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0, 1), background-color 0.45s cubic-bezier(0.4, 0, 0, 1);
}
.b-form__button div:after {
  top: 50%;
  left: 50%;
  width: 0.4rem;
  height: 0.4rem;
  margin-top: -0.2rem;
  margin-left: -0.2rem;
  transform: scale(0);
}
.b-form__button div:before {
  top: 0.5rem;
  right: 0.5rem;
  bottom: 0.5rem;
  left: 0.5rem;
  transform: scale(0.2);
  background: #474747;
}
.b-form__button_grey:after {
  background: #919090;
}
.b-form__button_grey span {
  background: #919090;
}
.b-form__button_grey div svg {
  fill: #919090;
}
.b-form__button_grey div:before {
  background: #919090;
}
.b-form__button_transparent {
  border: 1px solid #919090;
  color: var(--font-color-major);
  padding-right: 5rem;
}
.b-form__button_transparent:after {
  display: none;
  background: none;
}
.b-form__button_transparent span {
  background: none;
}
.b-form__button_transparent div {
  position: absolute;
  top: 50%;
  right: 1rem;
  margin-top: -1.6rem;
  width: 3.2rem;
  height: 3.2rem;
  border: 1px solid #919090;
  border-radius: 100%;
}
.b-form__button_transparent div svg {
  fill: none;
}
.b-form__button_transparent div:before {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #919090;
}
.b-form__footnote {
  color: var(--font-color-dark);
  margin: 0 0 16px;
}
.b-form__link {
  display: inline-block;
  color: var(--font-color-dark);
}
.b-form-auth {
  margin: 0 0 3rem;
}
.b-form-auth__box {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.b-form-auth__left, .b-form-auth__right {
  padding: 2.5rem;
}
.b-form-auth__create, .b-form-auth__form {
  max-width: 570px;
}
@media all and (max-width: 768px) {
  .b-form-auth__box {
    display: block;
  }
  .b-form-auth__left, .b-form-auth__right {
    padding: 2rem 1rem;
  }
}