@charset "UTF-8";

body{
	margin:0;	
}
.login_container{
	margin-top:12%;
	display:flex;
	justify-content: center;
	flex-direction: column; 
	align-items: center;
}

/* 
.login_title{
	width:300px;
	height:120px;
}
.login_title_img{
	width:100%;
	height:100%;
}

.login_form{
	display:flex;
	flex-direction:row; 
} */


.login_typebtn_input_box{
    justify-content: space-between;
    flex-grow:0;
}

.login_type_select {
	display:flex;
    justify-content: space-between;
    align-items: center;
    width: 38%;
    height: auto;
    padding:10px 5%;
    border-radius: 30px;
}

.login_type_default{
    background: #ffffff;
    border: 1px solid #CCCCCC;
    color:#aaa;
}

.login_type_default:hover{
    background:rgba(0,0,0,0.05);
}

.login_type_ckd{
	color: white;
    background: #0860A8;
    border: 1px solid #0860A8;
}

.login_type_ckd:hover{
    background:rgba(0, 71, 130, 1);
}

.login_type_img{
    width:25px;
    height:25px;
}
.login_type_text{
    font-size:17px;
    width:100%;
    text-align:center;
}


.login_input{
	border-left: 0px;
    border-right: 0px;
    border-top: 0px;
    margin-bottom: 10px;
    letter-spacing: 0.5px;
	width: 95%;
    padding: 15px 2%;
    border-bottom: 1px solid #ccc;
    display: flex;
    font-size:16px;
 }
 .login_input:focus{
  outline: none; 
 }

 .login_btn{
    height: 50px;
    background: #fff;
   	width: 100%;
    padding: 15px 2%;
    margin-top:20px;
    border: 1px solid #0860A8;
    border-radius: 30px;
    display: flex;
    font-weight: 700;
    font-size: 18px;
	color: #0860A8;
    cursor: pointer;
    text-align: center;
    justify-content: center;
    align-items: center;
 }

.login_btn:hover{
    background:rgba(8, 96, 168, 0.05);
}

 .other_link{
    display:flex;
    justify-content: space-between;
    align-items: center;
   	width: 90%;
    padding: 10px 5%;
    margin-bottom:20px;
    border-radius: 30px;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    background: #ffffff;
    border: 1px solid #CCCCCC;
 }

.other_link:hover{
    background:rgba(0,0,0,0.05);
}

.other_link:last-child{
    margin-bottom:0;
}

.other_link_img{
    width:25px;
    height:25px;
}

.other_link_text{
    width:100%;
    /*font-weight: 700;*/
	color: #aaaaaa;
    font-size: 16px;
    text-decoration: none;
}


.privacyPolicy{
	display:none;
	position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.3);
    z-index: 1000;
    margin-bottom: 0px;
}

.TermsOfservice{
	display:none;
	position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.3);
    z-index: 1000;
    margin-bottom: 0px;
}

.popWindow{
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.popup{
  border: 3px solid #0860A8;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #ffffff;
  box-shadow: 0 2px 7px rgba(0, 0, 0, 0.3);            
  /* 임시 지정 */
  width: 70%;
  height: 95%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  
}

.popup_header{
    width: 97%;
    height: 2%;
    font-size: 1.5rem;
    color: white;
    background: #0860A8;
    display: flex;
    flex-direction: row;
    align-items:center;
    justify-content: space-between;
    padding: 1.5%;
}

.popup_header_x{
	width: 30px; 
	height: 30px;
}

.popup_body{
	height: 98%;
	border: 30px solid #EEEEEE;
	display:flex;
	flex-direction:column;
	padding: 2%;
	overflow-y: scroll;
	-ms-overflow-style: none;	
}
.popup_body::-webkit-scrollbar{
    display:none;
}

.popup_b_hd{
 	font-size:18px;
 	font-weight:600;
 	margin-top: 2%; 	
 	margin-bottom: 1%; 	
}
.popup_b_hd2{
	font-size:13px;
	margin-bottom: 1%; 	
	line-height:2;
}
.popup_b_sub_hd{
	font-size:15px;
	font-weight:600;
	margin-top: 1%;
 	margin-bottom: 1%; 	
	
}
.popup_b_sub_content{
	font-size:13px;	
	margin-left: 2%;
	line-height:2;
}










