/*noto sans*/
@font-face {
	font-family: 'NotoKrL';
	font-style: normal;
	font-weight: 300;
	src: local('Noto Sans Light'), local('NotoSansKR-Light'),
		url(../fonts/NotoSansKr/NotoSans-Light.eot);
	src: url(../fonts/NotoSansKr/NotoSans-Light.eot?#iefix) format('embedded-opentype'),
		url(../fonts/NotoSansKr/NotoSansKR-Light.woff2) format('woff2'),
		url(../fonts/NotoSansKr/NotoSansKR-Light.woff) format('woff');
}

/*초기화*/
body, div, input, span{
	margin: 0px;
	padding: 0px;
}

a {text-decoration: none; outline: none}

a:hover, a:active {text-decoration: none;}

/* body background image */
body {
	background: no-repeat center/cover url("../img/login/login_bg.gif");
}

/* 전체를 감싸는 Wrapper */
.wrapper{
	width: 100%;
	height: 100%;
}

/* 로그인 요소 */
.loginWrapper{
	width: 300px;
	height: 450px;
	top: 19%;
	position: relative;
	margin: auto;
}
/* 로그인 버튼 및 인풋 사이즈*/
.loginWrapper button, .loginWrapper input{
	width: 300px;
	height:50px;
}
/* 로고 */
.loginWrapper img{
	width: 300px;
	height: 230px;
}

/* 로그인 인풋 */
.loginInputWrap{
	margin-bottom: 24px;
}

.loginInputWrap input{
	background-color: rgba(255,255,255,0.5);
	border: 1px solid rgba(196,196,196,0.5);
	padding-left: 17px; 
	font-family:'NotoKrL';
}

.loginInputWrap input::placeholder{
	color: #bbbbbb;
}

.loginInputWrap input:focus{
	outline: none;
	border: 1px solid #f47e1f;
}

.loginInputWrap input:first-child{
	margin-bottom: 12px;
}

/* 로그인 실패 */
#authFailureMsg {
	padding-top:5px;
	color: #D42020;
	font-size: 12px;
	display: block;
}

/* 로그인 버튼 */
.login_btn{
	border : 0px;
	background-color: #f47e1f; 
	color: #ffffff;
	font:bold 16px 'NotoKrL', sans-serif;
	cursor: pointer;
}

/* custom checkbox*/
.maintainAndFind, .maintainAndFind a{
	margin-top:15px;
	color:#777777;
	font:normal 12px 'NotoKrL', sans-serif;
	line-height: 1;
}

.maintainAndFind a:hover{
	color:#111111;
	font-weight: bold;
}

.maintain {
	float: left;
  	display: block;
  	position : relative;
  	padding-left: 20px;
  	cursor: pointer;
  	-webkit-user-select: none;
  	-moz-user-select: none;
  	-ms-user-select: none;
  	user-select: none;
  	line-height: 1;
}

.maintain input {
	position: absolute;
	opacity: 0;
	cursor: pointer;
	height: 0;
	width: 0;
}

.checkmark {
	position: absolute;
	top: 0;
	left: 0;
	height: 13px;
	width: 13px;
	background-color: #bbb;
	border-radius: 3px;
}

.maintain:hover input ~ .checkmark {
	background-color: #aaa;
}

.maintain input:checked ~ .checkmark {
	background-color: #333333;
}

.checkmark:after {
	content: "";
	position: absolute;
	display: none;
}

.maintain input:checked ~ .checkmark:after {
	display: block;
}

.maintain .checkmark:after {
	left: 4px;
	width: 3px;
	height: 8px;
	border: solid white;
	border-width: 0 2px 2px 0;
	-webkit-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
	color:#111111;
}

/* 아이디 찾기 */
.find {
	float: right;
	line-height: 1;
}

/*언어 선택*/

.rule {
  margin: 10px 0;
  border: none;
  height: 1.5px;
  background-image: linear-gradient(left, #f0f0f0, #c9bbae, #f0f0f0);
}

/* ===== Select Box ===== */
.sel {
  font-size: 10px;
  display: inline-block;
  width: 60px;
  background-color: transparent;
  position: relative;
  cursor: pointer;
  float: right;
  
}

.sel::before {
  position: absolute;
  content: '\f078';
  font-family: 'FontAwesome';
  font-size: 8px;
  color: #bbb;
  right: 3px;
  top: calc(50% - 0.5em);
}

.sel.active::before {
  transform: rotateX(-180deg);
}

.sel__placeholder {
  display: block;
  font-family: 'NotoKrL';
  font-size: 15px;
  font-weight:bold;
  color: #838e95;
  padding: 0.2em 0.5em;
  text-align: left;
  pointer-events: none;
  user-select: none;
  visibility: visible;
}

.sel.active .sel__placeholder {
  visibility: hidden;
}

.sel__placeholder::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 0.2em 0.5em;
  content: attr(data-placeholder);
  visibility: hidden;
}

.sel.active .sel__placeholder::before {
  visibility: visible;
}

.sel__box {
  position: absolute;
  top: calc(100% + 4px);
  display: none;
  list-style-type: none;
  text-align: left;
  font-size: 1em;
  background-color: rgba(0,0,0,0.2);
  width: calc(100%);
  box-sizing: border-box;
}

.sel.active .sel__box {
  display: block;
  animation: fadeInUp 500ms;
}

.sel__box__options {
  display: list-item;
  font-family: 'NotoKrL';
  font-size: 1.5em;
  color: #fff;
  padding: 0.5em 0.8em 0.5em 0.5em;
  user-select: none;
}

.sel__box__options::after {
  content: '\f00c';
  font-family: 'FontAwesome';
  font-size: 5px;
  margin-left: 5px;
  display: none;
}

.sel__box__options.selected::after {
  display: inline;
}

.sel__box__options:hover {
  background-color: rgba(0,0,0,0.4);
}

/* ----- Select Box Black Panther ----- */
.sel {
  /* border-bottom: 2px solid rgba(0, 0, 0, 0.3); */
}

.sel--black-panther {
  z-index: 3;
}

/* ----- Select Box Superman ----- */
.sel--superman {
/*   display: none; */
  z-index: 2;
}

/* ===== Keyframes ===== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 20px, 0);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes fadeOut {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}
