html{
	width: 100%;
    height: 100%;
    overflow: hidden;
}

body {
  font-family:'Noto Sans KR', sans-serif;
  background-color: #F8F9FD;
  margin:0px;
  color: #3d3d3d;
  height: 100%;
  overflow: auto;
  background-image: url(../img/login/background.png);
  background-repeat: no-repeat;
  background-size: cover;
}

* {
  box-sizing: border-box;
}

.container{
	height: 100vh;
}
.join_box{
	width: 50%;
    margin: 0 auto;
    background: rgb(255 255 255 / 52%);
    padding: 30px;
}

.joinForm{
	margin: 0 auto;
	box-sizing: border-box;
    border-radius: 2px;
    position: relative;
    margin-bottom: 50px;
}

.joinForm.step1 textarea{
  font-family:'Noto Sans KR', sans-serif;
    resize: none;
    outline: none;
    border: none;
    background-color: #eee;
    width: 100%;
    height: 180px;
    padding: 15px;
    font-size: 14px;
    display: none;
}

.joinForm.step1 > .termsLine1{
	padding: 30px 10px 5px 10px;
	font-size: 16px;
	font-weight: bold;
}

.joinForm.step1 > .termsLine2{
	padding: 10px 10px 5px 10px;
	font-size: 15px;
}

.termsLine2 > i.fa{
    float: right;
    margin : 2px 8px 0px 0px;
    color: #bfbfbf;
    font-size: 24px;
    cursor: pointer;
}

.joinForm input[type='checkbox']{
	display: none;
}

.joinForm label{
	cursor: pointer;
}

.joinForm label > .checkbox{
	width: 18px;
    height: 18px;
    background: url(/img/uncheck.png);
    background-size: contain;
    background-repeat: no-repeat;
    float: left;
    margin: 4px 5px 0px 0px;
}

.joinForm input[type='checkbox']:checked + label>.checkbox{
	background: url(/img/checked.png);
    background-size: contain;
    background-repeat: no-repeat;
}

.joinForm > .bottom{
	margin-top: 30px;
}

.joinForm.step2 {
	width: 520px;
}

.joinForm.step2 .inputForm{
	margin-bottom: 50px;
}

.joinForm.step2 .inputForm .blue{
	color: #00A0E3;
}

.joinForm.step2 .inputForm .red{
	color: #d81c1c;
}

.joinForm.step2 .inputForm .bold{
	font-weight: bold;
}

.joinForm.step2 .inputForm > .inputTitle{
	font-size: 14px;
	margin-top: 20px;
}

.joinForm.step2 .inputForm > .inputTitle > label{
	float: right;
}

.joinForm.step2 .inputForm > .inputTitle > label > .checkbox{
	width: 14px;
	height: 14px;
}

.inputForm > label >.serviceBox{
	width: 170px;
    border: 1px solid #ccc;
    display: inline-block;
    padding: 5px;
    text-align: center;
    border-radius: 5px;
    margin-top: 15px;
    margin-right: 10px;
    font-size:15px;
}

.inputForm > input[type='checkbox']:checked + label>.serviceBox{
	color: #00A0E3;
	border: 1px solid #00A0E3;
	font-weight: bold;
}

.joinForm.step2 .inputForm > .inputText{
	border: 1px solid #ccc;
	padding: 7px;
    margin-top : 5px;
}

.inputText > .fa-eye,
.inputText > .fa-eye-slash{
    font-size: 18px;
    color: #bbb;
    cursor: pointer;
}

.joinForm.step2 .inputForm > .inputFile{
    margin-top: 5px;
    border: 1px solid #ccc;
}


.joinForm.step2 .inputForm > .comment{
	font-size: 12px;
}

.comment.fail{
	color: #e00303;
}

.comment.success{
	color: #036ff4;
}

.joinForm.step2 .inputForm table {
   width: 96%;
   border: 1px solid #ccc;
   border-collapse: collapse;
   font-size: 12px;
   color: #616161;
   margin-top: 15px;
 }
.joinForm.step2 .inputForm table th, td {
   border: 1px solid #ccc;
   padding: 5px;
 }
 
 .joinForm.step2 .inputForm table th{
 	width: 75px;
 	background-color: #efefef;
 }

.joinForm.step2 .inputForm  button { 
    border: 1px solid #ccc;
    outline: none;
    padding: 8px;
    margin: 0px 5px;
    cursor: pointer;
    border-radius: 5px;
    font-size: 14px;
    background: #fff;
}

.joinForm.step2 .inputForm button:hover{
	background-color: #f5f5f5;
}

.joinForm.step2 .inputForm input[type="text"],
.joinForm.step2 .inputForm input[type="password"],
.joinForm.step2 .inputForm select{
	font-size: 15px;
	outline: none;
    border-radius: 0px;
    border: none;
    width: 100%;    
    background: transparent;
}
.joinForm.step2 .inputForm input[type="file"]{
	font-size: 14px;
	outline: none;
    width: 100%;
}

/* IE10 이상을 위한 css */
input::placeholder {
  color: #ccc;
  opacity: 1; /* 파이어폭스에서 뿌옇게 나오는 현상을 방지하기 위한 css */
  font-style: normal;
}
input::-webkit-input-placeholder {
  color: #ccc;
  font-style: normal;
}
/* IE */
input:-ms-input-placeholder {
  color: #ccc;
  font-style: normal;
}
/* Firefox */
input:-mos-input-placeholder {
  color: #ccc;
  opacity: 1; /* 파이어폭스에서 뿌옇게 나오는 현상을 방지하기 위한 css */
  font-style: normal;
}

.joinForm > .complete{
	text-align: center;
    border: 1px solid #ddd;
    padding: 30px;
}
.joinForm > .complete strong{
	font-size: 24px;
}
.joinForm > .complete .fa-check-circle{
	font-size: 50px;
    color: #0573B7;
    width: 100%;
    margin-bottom: 20px;
}


.bottom button { 
	border: none;
    outline: none;
    padding: 10px;
    margin: 0px 5px;
    cursor: pointer;
    border-radius: 5px;
    background-color: #d6d6d6;
    color: #fff;
    font-size: 16px;
    width: 100%;
}

.bottom button.active{
	background-color : #0573B7;
	color: #fff;
}

.home{
	border: 1px solid #0573B7;
    color: #0573B7;
    padding: 7px 20px;
    border-radius: 50px;
    text-decoration: none;
    margin-top: 10px;
}

#termsContent h2{
	font-size: 18px;
}

#termsContent .subText{
	margin: 5px 12px;
}

#fax_msg {
    display: none;
    font-size: 15px;
    font-weight: bold;
    letter-spacing: -1px;
    margin: 2px 5px;
}

@media (max-width: 1080px){
	.join_box{
		width: 80%;
	}
}

@media screen and (max-width:640px){
	div.main{
	    min-width: unset;
	}
	
	.leftWrap .joinForm {
    	padding: 40px 20px;
   		width: 100%;
	}
	.joinForm > .bottom {
	    width: calc(100% - 45px);
	}
	.joinForm.step2 {
	    width: 100%;
	}

	.join_box{
		width: 92%;
	}
}
