h2 > span {
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 10px;
    display: block;
}

h2 {
    text-align: left;
    padding-left: 10px;
    font-size: 32px;
}

.register-wrap .input-wrap{
    margin-bottom : 40px;
    position : relative;
    max-width: 490px;
    width: 95%;
    margin : 0 auto 40px;
}

.register-wrap label{
    display : block;
    color : #767676;
    font-size : 16px;
    margin-bottom : 16px;
}

.register-wrap label .essential{
    color : #b3261e;
}

.register-wrap .input{
    height: 60px;
    font-size: 16px;
    padding: 0 20px;
    background-color : #fafafa;
    border : 0;
}

.register-wrap .input-wrap .warning-word {
    color: #B3261E;
    margin-top: 10px;
}

.register-wrap .input-wrap .warning-red {
    width: 16px;
    height: 16px;
    margin-right: 6px;
}

.register-wrap .input-wrap .checkbox + span{
    display : flex;
    align-items: center;
    justify-content : center;
    height : 60px;
    font-size : 16px;
    border : 1px solid #767676;    
    color : #1c1c1c;
}

.register-wrap .input-wrap .checkbox:checked + span{
    border : 0;
    background-color : #767676;
    color : #fff;
}

.register-wrap .select-gender-wrap{
    display : grid;
    grid-template-columns: repeat(2,1fr);
    gap : 10px;
}

.register-wrap .input-phone-wrap{
    display : grid;
    grid-template-columns: repeat(3,1fr);
    gap : 10px;
}

.register-wrap .input-phone-wrap .input{
    text-align : center;
}

.register-wrap .input-with-btn-wrap{
    position : relative;
    display : grid;
    grid-template-columns: auto 150px;
    gap: 10px;
}

.register-wrap .input-with-btn-wrap .btn-white{
    border : 1px solid #767676;
    font-size : 16px;
    color : #1c1c1c;
}


input[type="file"] {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip:rect(0,0,0,0);
  border: 0;
}

.register-wrap .type-info{
    font-size : 16px;
    font-weight : 300;
    padding-left : 10px;
    margin-top : 4px;
}


.checkbox-wrap .input-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position : relative;
}

.checkbox-wrap .input-wrap label {
    margin-bottom: 0;
}

.checkbox-wrap .input-wrap .btn-white {
    width: 100px;
    height: 44px;
    border: 1px solid rgba(0,0,0,0.12);
    text-align: center;
    font-size: 14px;
}

.checkbox-wrap .input-wrap .checkbox + label:before {
    width: 20px;
    height: 20px;
    margin-right: 0;
}

.register-wrap label > span:first-child{
    display : inline-block;
    vertical-align: middle;
}


.confirm-agreement{
    padding : 30px 0 0 10px;
}


.confirm-agreement > div{
    display : flex;
    align-items: center;
    justify-content: space-between;
}

.confirm-agreement > div:first-child{
    margin-bottom : 10px;
}

.confirm-agreement > div > div{
    /*position : relative;*/
}

.checkbox + label:before{
    vertical-align: middle;
    margin-right : 16px;
}

.btn-white{
    /*width : 156px;*/
    height : 36px;
    border : 1px solid #b1b1b1;
    border-radius : 2px;
}

.btn-submit {
    background-color: #1c1c1c;
    color: #fff;
    text-align: center;
    width: 100%;
    height: 60px;
    font-size: 20px;
    font-weight: 500;
}

.register-wrap textarea.input{
    padding : 20px;
    min-height : 180px;
}


@media screen and (max-width : 1016px){

    .register-wrap .btn-wrap{
        width : 95%;
        margin : auto;
    }
    .btn-submit{
        box-sizing: border-box;
        width: calc(100% - 20px);
    }
}

@media screen and (max-width : 768px){
    h2{
        font-size : 24px;
        margin-bottom : 35px;
    }

    .btn-submit{
        font-size : 18px;
    }

}


@media screen and (max-width : 480px){

    h2 > span {
        font-size: 14px;
        margin-bottom: 0;
    }

    h2{
        font-size: 16px;
        font-weight : 700;
        margin-bottom : 20px;
    }

    .checkbox-wrap .input-wrap .btn-white{
        font-size : 14px;
    }

    .btn-submit{
        font-size : 16px;
    }

}