.cs {
  position: relative;
  padding-top: 10rem;
  padding-bottom: 10rem;
}
@media screen and (max-width: 1024px) {
  .cs {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }
}
.cs__section {
  margin-top: 5rem;
}
.cs__form {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8rem;
}
@media screen and (max-width: 800px) {
  .cs__form {
    grid-template-columns: repeat(1, 1fr);
    gap: 10px;
  }
}
.cs__left {
  position: relative;
}
.cs__right {
  position: relative;
}
.cs .frm-input {
  position: relative;
  width: 100%;
  height: 5rem;
  border-radius: 5px !important;
  background: #fff;
  border: 1px solid #ddd;
  font-size: 1.6rem;
  color: #000;
}
.cs textarea.frm-input {
  padding: 1rem;
  line-height: 1.2;
  height: 17.5rem;
}
.cs .frmbox {
  padding-bottom: 0;
  margin-bottom: 0;
  border-bottom: 0;
}
.cs .frmbox + .frmbox {
  margin-top: 10px;
}
.cs .frmbox label {
  font-size: 1.6rem;
  color: #000000;
}
.cs .frmbox__head {
  width: 11.9rem;
}
.cs .frmbox__body {
  width: calc(100% - 11.9rem);
}
@media screen and (max-width: 640px) {
  .cs .frmbox__body {
    width: 100%;
  }
}
.cs .checkbox__label {
  font-size: 1.6rem;
  color: #000000;
}
.cs__agree {
  display: flex;
  flex-direction: row;
  align-items: center;
  flex-wrap: wrap;
  justify-content: space-between;
  padding-top: 2.1rem;
  padding-left: 11.9rem;
}
@media screen and (max-width: 640px) {
  .cs__agree {
    padding-left: 0;
  }
}
.cs__agree .checkbox {
  width: 100%;
  margin-bottom: 1.1rem;
}
.cs__agree .btn-view {
  display: inline-block;
  margin-left: 1rem;
  font-size: 1.6rem;
  color: #000000;
  text-decoration: underline;
}
.cs__agree .btn-submit {
  display: inline-flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 12.6rem;
  height: 5rem;
  margin-left: 2.8rem;
  border-radius: 5px !important;
  background: #0c4da2;
  font-size: 1.6rem;
  text-align: center;
  color: #fff;
}
@media screen and (max-width: 640px) {
  .cs__agree .btn-submit {
    width: 100%;
    margin-left: 0;
    margin-top: 2rem;
  }
}