* {
	box-sizing: border-box;
}
body {
	margin: 0;
	padding: 0;
	font-size: 18px;
	font-family: 'Open Sans', sans-serif;
	position: relative;
	min-height: 100vh;
	background: url("/images/shutterstock_1074678932-op.jpeg");
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
}
body, input, p {
	font-family: 'Open Sans', sans-serif;
}
.clk {
	cursor: pointer;
}
.top-bar {
	background: #2ac2e7;
	height: 5px;
}
.content-container {
	width: 100%;
	overflow-x: hidden;
	padding-bottom: 100px;
}
.wrapper {
	margin: 0 auto;
	width: 100%;
	max-width: 400px;
	text-align: center;
	padding: 125px 10px;
}
.logo {
	height: auto;
	width: 325px;
}
.login-field {
	text-align: left;
	padding: 10px 0;
	position: relative;
	border-bottom: 1px solid #d9d9d9;
	background: #ffffff;
	margin: 15px 0;
	box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}
.login-field .icon-outline {
	border-radius: 50%;
	border: 2px solid #d9d9d9;
	color: #d9d9d9;
	height: 45px;
	width: 45px;
	display: inline-block;
	padding: 3px;
	text-align: center;
	position: absolute;
	left: 10px;
	top: 50%;
	transform: translateY(-50%);
}
.login-field .icon-outline i {
	position: absolute;
	top: 50%;
	display: block;
	left: 50%;
	transform: translate(-50%, -50%);
	font-size: 125%;
 }
.login-field input {
	border: none;
	padding: 10px;
	font-size: 100%;
	padding-left: 70px;
}
.login-field input:focus {
	outline: none;
}
.login-field .bottom-border {
	height: 2px;
	width: 0;
	background: #2ac2e7;
	transition: width 0.25s; 
	bottom: 0;
	left: 0;
	position:absolute;
	z-index: 2;
}
.login-field input:focus ~ .icon-outline {
	border: 2px solid #2ac2e7;
	color: #2ac2e7;
}
.login-field input:focus ~ .bottom-border {
	width: 100%;
}
.login-button {
	padding: 10px 50px;
	background: #2ac2e7;
	color: #ffffff !important;
	text-decoration: none;
	text-transform: uppercase;
	display: inline-block;
	border-radius: 10px;
	font-size: 125%;
	font-weight: normal;
}
.bottom-bar {
	height: 5px;
	width: 100%;
	background: #CCCCCC;
	position: absolute;
	bottom: 0;
	left: 0;
}
