
body {
	background-color: #f8f8f8;
}

#login {
	background-color: transparent;
	width: 85%;
	max-width: 380px;
	margin: auto;
	padding: 40px 20px;
  top: 100px;
	position: relative;
	/*border: 1px solid #ddd;*/
	border-radius: 5px;
	/*box-shadow: 2px 2px 5px #eee;*/
}

#login .div_img {
  width: 100px;	
	margin: auto;
	margin-bottom: 20px;
}

.div_in {
	width: 100%;
	height: 40px;
	position: relative;	
	background-color: transparent;
	display: flex; 	
	border-bottom: .5px solid #bbb;
}

.div_in:nth-of-type(1) {
		margin-bottom: 20px;
}

.div_in .input {
	width: 100%;
	background-color: transparent;
	color: #222; 
	font-size: 1.1em;
	padding: 0px 5px;
	border: none;	
}

.fa-eye  {
	position: absolute;
	right: 0;	
	margin-right: 4px;	
	align-self: center;
	font-size: 1.1em;
	cursor: pointer;
	color: #000;
}

#login button {
	width: 100%;
	height: 40px;
	position: relative;
	margin-top: 30px;
	margin-bottom: 5px;	
  background: linear-gradient(to right, #5476a2, #5476a2);	
	color: #fff;	
	cursor: pointer;
	font-size: 1em;
	border: none;
	transition: all .2s ease;
}

#login button:hover {
  box-shadow: 2px 3px 3px #bbb;
	color: #fff;
}	

#login button:active {
	box-shadow: none;
	top: 1px;
}

#login #frgPass {
	cursor: pointer;
	color: #777;
	margin-bottom: 10px;
	text-decoration: underline;
}

#notify {
	color: #333;
}

/*PC ONLY*/

@media only screen and (min-width: 970px) { 

#login {
	top: 120px; /*100px*/
}
		
}