*{
	padding: 0;
	margin: 0;
	box-sizing: border-box;
}

body{
    font-family: "arial", sans-serif;
    overflow: hidden;
    background-color: #0b5962;
}

.header{
	float: left
	width: 350px;
	height: 200px;
	padding:0;
	z-index: -1;
}

.header img{ width: 100%; height:100%; }
.container{
	background-color: #fff;
    width: 400px;
    margin:3% auto;
    padding:10px;
    border:4px solid #268793;
    box-shadow: 0px 1px 6px -3px #2f95a1;
}

.logo { margin-top:20px }
.logo img { width: 80%; }

.login-content{	
	position: relative;	
	padding:0;
	width:300px;
	height:auto;
	margin:0 auto;
	
}


form{
	width: 300px;
	margin:0 auto;
}


.login-content h2{
	align-items: center;
	text-align: center;
	margin: 25px 0;
	color: #333;
	text-transform: uppercase;
	font-size: 1.4rem;
}

.login-content .input-div{
	position: relative;
    display: grid;
    grid-template-columns: 7% 93%;
    margin: 15px 0;
    padding: 5px 0;
    border-bottom: 2px solid #5eb4be;
}

.login-content .input-div.one{
	margin-top: 0;
}

.i{
	color: #35312E;
	display: flex;
	justify-content: center;
	align-items: center;
}

.i i{
	transition: .3s;
}

.input-div > div{
    position: relative;
	height: 45px;
}

.input-div > div > h5{
	position: absolute;
	left: 10px;
	top: 50%;
	transform: translateY(-50%);
	color: #999;
	font-size: 18px;
	transition: .3s;
}

.input-div:before, .input-div:after{
	content: '';
	position: absolute;
	bottom: -2px;
	width: 0%;
	height: 2px;
	background-color: #2f95a1;
	transition: .4s;
}

.input-div:before{
	right: 50%;
}

.input-div:after{
	left: 50%;
}

.input-div.focus:before, .input-div.focus:after{
	width: 50%;
}

.input-div.focus > div > h5{
	top: -5px;
	font-size: 15px;
}

.input-div.focus > .i > i{
	color: #0a717d;
}

.input-div > div > input{
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	border: none;
	outline: none;
	background: none;
	padding: 0.5rem 0.7rem;
	font-size: 1.2rem;
	color: #555;
	font-family: "arial", sans-serif;
	font-weight:normal;
}

.input-div.pass{
	margin-bottom: 4px;
}

a{
	display: block;
	text-align: right;
	text-decoration: none;
	color: #999;
	font-size: 0.9rem;
	transition: .3s;
}

a:hover{
	color: #f74b16;
}

.btn{
	display: block;
	width: 100%;
	height: 50px;
	border-radius: 25px;
	outline: none;
	border: none;
	background-image: linear-gradient(to right, #27929f, #0a717d, #27929f);
	background-size: 200%;
	font-size: 1.2rem;
	color: #fff;
	font-family: "tahoma", sans-serif;
	text-transform: uppercase;
	margin: 1rem 0;
	cursor: pointer;
	transition: .5s;
}
.btn:hover{
	background-position: right;
}


/* style mobile */
@media all and (max-width: 768px), only screen and (-webkit-min-device-pixel-ratio: 2) and (max-width: 1024px), only screen and (min--moz-device-pixel-ratio: 2) and (max-width: 1024px), only screen and (-o-min-device-pixel-ratio: 2/1) and (max-width: 1024px), only screen and (min-device-pixel-ratio: 2) and (max-width: 1024px), only screen and (min-resolution: 192dpi) and (max-width: 1024px), only screen and (min-resolution: 2dppx) and (max-width: 1024px) {
	body{
    background-color: #fff;
    }
	.container{
		grid-template-columns: 1fr;
	}

	.login-content{
		justify-content: center;
	}

	.header{ display: block; }
}