@charset "utf-8";


* {
	-ms-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	margin: 0;
	padding: 0;
	border: 0;
}


html,
body {
	width: 100%
	height: 100%;
	background: #FFF;
	font-family: 'open sans', arial, helvetica, sans-serif, tahoma;
	font-weight: 200;
}

.login {
	position: relative;
	top: 30%;
	width: 650px;
	height: 500px;
	display: table;
	margin: -150px auto 0 auto;
	background: #B3F0EC;
	border-radius: 10px;
}

.legend {
	position: relative;
	width: 100%;
	display: block;
	background: #B3F0EC;
	padding: 15px;
	color: #0B6975;
	font-size: 20px;
	text-align: center;
}

.legend:after {
	content: "";
	background-image: ;
	background-size: 100px 100px;
	background-repeat: no-repeat;
	background-position: 152px -16px;
	opacity: 0.06;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	position: absolute;
}

.input {
	position: relative;
	width: 230px; 
	margin: 15px auto;
}

.input input {
	width: 100%;
	padding: 10px 5px 10px 40px;
	display: block;
	border: 1px solid #EDEDED;
	border-radius: 4px;
	transition: 0.2s ease-out;
	color: #a1a1a1;
}

.input input:focus {
	padding: 10px 5px 10px 10px;
	outline: 0;
	border-color: #FFF
}

.box {
    display: block;
    margin: 0 auto 15px auto;
    width: 120px;
    -webkit-transition: all .2s;
    background: #B3B3B3;
    line-height: 35px;
    text-align: center;
    font-weight: bold;
    color: #fff;
    border-radius: 5px;
    box-shadow: 0px 0px 2px rgba(0,0,0,.5),
        1px 1px 5px rgba(0,0,0,.3);
    cursor: pointer;
}

.box:hover {
    background: #fff;
    color: #B3B3B3;
}

.feedback {
	position: absolute;
	bottom: -70px;
	width: 100%;
	text-align: center;
	color: #B3B3B3;
	background: #B3B3B3;
	padding: 10px 0;
	font-size: 12px;
	display: none;
	opacity: 0;
}

.feedback:before {
	bottom: 100%;
	left: 50%;
	border: solid transparent;
	content: "";
	height: 0;
	width: 0;
	position: absolute;
	pointer-events: none;
	border-color: rgba(46, 204, 113, 0);
	border-bottom-color: #2ecc71;
	border-width: 10px;
	margin-left: -10px;
}

.forgot {
	position: relative;
	width: 100%;
	display: block;
	background: #B3F0EC;
	padding: 15px;
	color: #0B6975;
	font-size: 14px;
	text-align: center;
}

a:visited {
  color: #006D62;
}


@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {

.login {
	margin: 120px auto 0 auto;
}

}