@import url("../../assets/css/basic_css.css");

   /*
*
* ==========================================
* PC
* ==========================================
*
*/

@media screen and (min-width: 911px) {
/* --------------------------------------------------------content----------------------------------------------------------- */

.login_wrap{
    width: 100%;
    height: 1400px;
}

.login_content_wrap{
    width: 100%;
    height: calc(100% - 40px);
    margin-top: 40px;
    position: relative;
    
}

.content_inner{
    width: 53.3%;
    overflow: hidden;
    margin: 0 auto;

}

.content_inner content .container{
   width: 100%;
   margin: 0 auto;
}

h1{
    text-align: center;
    color: black;
    margin-bottom: 10px;
}

p{
    margin-bottom: 20px;
    text-align: center;
}

.checkblock{
    letter-spacing: -1px;
    width: 100%;
    height: 350px;
    margin-bottom: 20px;
}

.checkblock:nth-child(2){
    height: 50px;
}

.one_checkbox{
    width: 100%;
    height: 24px;
}

.one_checkbox input{
   width: 15px;
   height: 15px;
   vertical-align: middle;
}

.one_checkbox label{
  margin-left: 0px;
  vertical-align: middle;
}

.more_btn{
    display: block;
    width: 100%;
    height: 24px;
    padding: 5px 0px 10px 0px;
    
}

.more_btn a{
    border-bottom: 1px solid black;
    font-weight: bold;
    font-size: 0.9em;
    color: black;
}

.text_area{
    width: calc(100% - 22px);
    height: 250px;
    border: 1px solid #b4b4b4;
    background-color: #fcfcfc;
    overflow: auto;
    white-space: pre-wrap; /*글 쓸떄 연속된 공백을 그대로 유지 */
    font-weight: 500;
    padding : 10px;
    line-height: 1.23;
    color: #909090;
    font-size: 0.8em;
    /* box-sizing: border-box; */
}

.btn_regAgree{
    display: block;
    border: none;
    width: 280px;
    height: 40px;
    border-radius: 5px;
    outline: none;
    font-weight: bold;
    margin: 0 auto;
    background-color: #0072de;
    color: white;
    opacity: 0.4;
    margin-top: 30px;
}





input[type="checkbox"] {
    -webkit-appearance: none; 
    -moz-appearance: none; 
    appearance: none; 
    background: white; 
    border: 1px solid #0072de;
    border-radius: 30px; 
    cursor: pointer; 
    height: 16px; 
    outline: 0; 
    width: 16px; 
} 

input[type="checkbox"]::after { 
    border: solid #fff; 
    border-width: 0 2px 2px 0; 
    content: ''; 
    display: none; 
    height: 40%; 
    left: 35%; 
    position: relative; 
    top: 20%; 
    transform: rotate(45deg); 
    width: 15%; 
}  

input[type="checkbox"]:checked { 
    background: #0072de; 
} 

input[type="checkbox"]:checked::after { 
    display: block; 
} 



}

  /*
*
* ==========================================
* 모바일 (스마트폰 + 태블릿 포함)
* ==========================================
*
*/
   
@media screen and (min-width: 0px) and (max-width: 910px) {



/* --------------------------------------------------------content----------------------------------------------------------- */

.login_wrap{
    width: 100%;
    height: 1200px;
}

.login_content_wrap{
    width: calc(100% - 50px);
    height: calc(100% - 40px);
    margin-top: 100px;
    padding: 0px 25px;
    position: relative;
    
}

.content_inner{
    width: 100%;
    overflow: hidden;
    margin: 0 auto;

}

.content_inner content .container{
   width: 100%;
   margin: 0 auto;
}

h1{
    text-align: center;
    color: black;
    margin-bottom: 10px;
    font-size: 16px;
    letter-spacing: -1px;
}

p{
    margin-bottom: 20px;
    text-align: center;
    letter-spacing: -1px;
    font-size: 14px;
}

.checkblock{
    letter-spacing: -1px;
    width: 100%;
    height: 350px;
    margin-bottom: 20px;
}

.checkblock:nth-child(2){
    height: 50px;
}

.one_checkbox{
    width: 100%;
    height: 24px;
}

/* .one_checkbox input{
   width: 14px;
   height: 14px;
   vertical-align: middle;
} */

.one_checkbox label{
  margin-left: 0px;
  vertical-align: middle;
  font-size: 14px;
}

.more_btn{
    display: block;
    width: 100%;
    height: 24px;
    padding: 5px 0px 10px 0px;
    
}

.more_btn a{
    border-bottom: 1px solid black;
    font-weight: bold;
    font-size: 13px;
    color: black;
}

.text_area{
    width: calc(100% - 22px);
    height: 250px;
    border: 1px solid #b4b4b4;
    background-color: #fcfcfc;
    overflow: auto;
    white-space: pre-wrap; /*글 쓸떄 연속된 공백을 그대로 유지 */
    font-weight: 500;
    padding : 10px;
    line-height: 1.23;
    color: #909090;
    font-size: 0.8em;
    /* box-sizing: border-box; */
}

.text_area span:nth-child(1){
    font-size: 20px !important;
}

.btn_regAgree{
    display: block;
    border: none;
    width: 280px;
    height: 40px;
    border-radius: 5px;
    outline: none;
    font-weight: bold;
    margin: 0 auto;
    background-color: #0072de;
    color: white;
    opacity: 0.4;
    margin-top: 30px;
}





input[type="checkbox"] {
    -webkit-appearance: none; 
    -moz-appearance: none; 
    appearance: none; 
    background: white; 
    border: 1px solid #0072de;
    border-radius: 30px; 
    cursor: pointer; 
    height: 14px; 
    outline: 0; 
    width: 14px; 
    vertical-align: middle;
} 

input[type="checkbox"]::after { 
    border: solid #fff; 
    border-width: 0 2px 2px 0; 
    content: ''; 
    display: none; 
    height: 40%; 
    left: 35%; 
    position: relative; 
    top: 20%; 
    transform: rotate(45deg); 
    width: 15%; 
}  

input[type="checkbox"]:checked { 
    background: #0072de; 
} 

input[type="checkbox"]:checked::after { 
    display: block; 
} 

}