.cs_center {
    gap: 30px;
}
.cs_center .form {
    gap: 10px;
    max-width: 840px;
    margin: 0 auto;
}
.cs_center .form > div {
    width: calc(50% - 5px);
}
.cs_center .form > div input[type=text] {
    width: 100%;
    height: 48px;
    font-size: 16px;
    border: 1px solid rgba(113, 113, 113, 0.5);
    border-radius: 10px;
    padding: 0 20px;
    box-sizing: border-box;
}
.cs_center .form > div textarea {
    width: 100%;
    height: 200px;
    resize: none;
    font-size: 16px;
    border: 1px solid rgba(113, 113, 113, 0.5);
    border-radius: 10px;
    padding: 20px;
    box-sizing: border-box;
}
.cs_center .form > div.agree {
    position: relative;
}
.cs_center .form > div.agree input {
    position: absolute;
    top: 0;
    left: 0;
    width: 1px;
    height: 1px;
    opacity: 0;
    z-index: -1;
}
.cs_center .form > div.agree input + label {
    position: relative;
    display: inline-block;
    padding-left: 25px;
    box-sizing: border-box;
}
.cs_center .form > div.agree input + label:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 18px;
    height: 18px;
    border: 1px solid var(--black);
    border-radius: 3px;
    box-sizing: border-box;
}
.cs_center .form > div.agree input:checked + label:before {
    background: var(--black) url("../images/ic_check_white.svg")no-repeat 50% 50%;
}
.cs_center .form > div.btn_area {
    margin-top: 30px;
    gap: 10px;
}
.cs_center .form > div.btn_area button {
    padding: 0 45px;
    height: 40px;
    border-radius: 5px;
}



@media screen and (max-width: 1440px) {
}
@media screen and (max-width: 1240px) {
}
@media screen and (max-width: 1024px) {
}
@media screen and (max-width: 768px) {
}
@media screen and (max-width: 480px) {
    .cs_center .form > div {
        width: 100%;
    }
}
@media screen and (max-width: 380px) {
}