.form-inner {
  flex-wrap: wrap;
}
.form-box span.error {
  display: block;
  width: 55%;
  color: #f00;
  font-weight: 400;
  margin-left: auto;
}
.form-box .form-inner .confirm {
  width: 55%;
}
.confirm {
  color: #666666;
  font-weight: 400;
}
.tab:not(.current) {
  display: none;
}
.form-action {
  display: flex;
  justify-content: center;
  gap: 30px;
}
.form-action .btn {
  width: fit-content;
  max-width: 100%;
  border-radius: 10rem;
  display: inline-flex;
  padding: 1.2rem 3rem;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-size: 2.4rem;
  font-style: normal;
  font-weight: 700;
  line-height: 1.2;
  position: relative;
  padding-right: 4.8rem;
  overflow: hidden;
  box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.5);
  background: linear-gradient(90deg, #46a1e7 0%, #49d585 96.87%);
  transition: opacity 0.25s;
}
.form-action .btn:hover {
    opacity: 0.7;
}
.form-action .btn .arrow {
  position: absolute;
  right: 2rem;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
}
.form-action .btn.btn-gray {
  padding-left: 4.8rem;
  padding-right: 3rem;
  background: #666666;
}
.form-action .btn.btn-gray .arrow {
  left: 2rem;
  right: auto;
  transform: translateY(-50%) rotate(180deg);
}
#form-loading {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99999;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  display: none;
  padding-bottom: 10vh;
}

#form-loading.active {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.cv-copy {
  width: 100%;
  text-align: center;
  margin-bottom: 30px;
}

.cv-copy h2 {
  color: #fff;
  line-height: 2;
}

.cv-copy p {
  color: #fff;
  font-size: 22px;
}

.cv-spinner {
  width: 80px;
  height: 80px;
  display: block;
}

.spinner {
  display: block;
  width: 80px;
  height: 80px;
  border: 4px #ddd solid;
  border-top: 4px #999 solid;
  border-radius: 50%;
  animation: sp-anime 0.8s infinite linear;
}

@keyframes sp-anime {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(359deg);
  }
}

@media screen and (max-width: 800px) {
    .form-action{
        gap: 15px;
    }
    .form-action .btn {
        padding: 1.2rem 2rem;
        padding-right: 4.8rem;
        font-size: 1.6rem;
      }
      .form-action .btn .arrow {
        right: 2rem;
        border-top: 8px solid transparent;
        border-bottom: 8px solid transparent;
        border-left: 12px solid #fff;
      }
      .form-box span.error{
        font-size: 14px;
        width: 100%;
      }
}
.consultation{
  margin-bottom: 10px;
}
textarea{
  display: block;
}