@charset "utf-8";

html, body {
	min-height: 100%;
	font-family: Oxygen;
	font-weight: 300;
	font-size: 1em;
	color: #fff;
}

body {
	background: #FD7539;
	background-image: -webkit-radial-gradient(top, circle cover, #FD7539, #FD834E 88%);
}

.wrap {
	width:250px;
	height: auto;
	margin: auto;
	margin-top: calc(20vh);
}
.avatar {
	width: 100%;
	margin: auto;
	padding: 8px 0px;
	width: 180px;
	height: 70px;
	/*border-radius: 100px;*/
	background: transparent; /*#448ed3 ;*/
	position: relative;
	bottom: 24px;
	text-align: center ;
}
.avatar img {
	width: 168px;
	height: 70px;
/*	border-radius: 100px;
	margin: auto;
	border:3px solid #fff;*/
	display: block;
	content:url(../../images/logo/logo.white.png) ;
}
.avatar span {
	font-size: 1.11em;
}
.message {
	width: 100%;
	margin: 11px 0px;
	text-align: center;
}
.message span {
	font-size: 1.23em;
}
.message span.none {
	display: none;
}
.wrap input {
	border: none;
	background: #fff;
	/*font-family:Lato ;*/
	font-weight:700 ;
	display: block;
	height: 40px;
	outline: none;
	width: calc(100% - 24px) ;
	margin: auto;
	padding: 6px 12px 6px 12px;
}
.wrap input::placeholder {
	color: #aaa;
	opacity: 1; /* Firefox */
}
.bar {
	width: 100%;
	height: 1px;
	background: #fff ;
}
.bar i {
	width: 95%;
	margin: auto;
	height: 1px ;
	display: block;
	background: #d1d1d1;
}
.wrap input[type="text"] {
	border-radius: 7px 7px 0px 0px ;
}
.wrap input[type="password"] {
	border-radius: 0px 0px 7px 7px ;
}
.forgot_link {
	color: #83afdf ;
	color: #83afdf;
	text-decoration: none;
	font-size: 11px;
	position: relative;
	left: 193px;
	top: -36px;
}
.wrap button {
	height: 40px;
	width: 100%;
	margin-top:-5px;
	padding-top: 14px;
	padding-bottom: 14px;
	outline: none;
	font-size: 13px;	
	-webkit-appearance: none;
	background-color: #804000;
	text-transform: uppercase;
	color: #fff;
	border: 0px;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
	cursor: pointer;
}
.content {
	width:250px;
	height: auto;
	margin: auto;
	margin-top: 10%;
}
.content >.failure {
	width: 100%;
	height: auto;
	margin: auto;
	text-align: center;
}
.content >.failure >p {
	margin: 11px 0px;
	font-size: 1.23em;
}
.blink {
	animation-duration: 1s;
	animation-name: blink;
	animation-iteration-count: infinite;
	animation-direction: alternate;
	animation-timing-function: ease-in-out;
}
@keyframes blink {
	0% {
		opacity: 1;
	}
	80% {
		opacity: 1;
	}
	81% {
		opacity: 0;
	}
	100% {
		opacity: 0;
	}
}