html {
	height: 100%
}

body{
	background: #2d3e50;
	background-size: cover;
	font-family: 'Open Sans', sans-serif;
	font-size: 15px;
	font-weight: 300;
	color: #555;
	height: 100%;
}
body.password-reset{
	background: #fff;
}

@media (min-width: 768px){
	body{
		font-size: 17px;
	}
	.container{
		width: 570px;
	}
}

.mask {
	position: absolute;
	top: 0;
	left: 0;
	right; 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	background-color: #022E48;
	opacity: .8;
	z-index: 1;

}

h1,h2,h3,h4,h5,h6{
	font-weight: 300;
}
a{
	color: #85ad05;
}
a:hover, a:focus {
	color: #85ad05;
}
p{
	line-height: 1.5em;
	margin: 0 0 1em;
}
.center{
	text-align: center;
}
.success-icon{
	margin: 0 auto 35px;
	width: 80px;
}

/* Footer
================================================= */
.footer{
	font-size: 14px;
	padding: 20px 0;
	text-align: center;
}


/* Bootstrap Overrides
================================================= */

/* Type */
h1{
	font-size: 34px;
	margin-bottom: 1em;
	text-align: center;
}

.text-left {
	text-align: left;
}
/* Alerts */
.alert-header{
	border-radius: 0 !important;
}
.alert-danger{
	background-color: #d60000;
	color: #fff;
	border-bottom: 1px solid #b50000;
	display: none;
}
.alert-danger a{
	border-bottom: 1px solid rgba(255,255,255,.6);
	color: #fff;
	color: rgba(255,255,255,.8);
	text-decoration: none;
}

.panel{
    background: #fff;
    box-shadow: 0 4px 6px rgba(0,0,0,.2);
    padding: 30px;
    margin: 30px 0;
    text-align: center;
    border-radius: 15px;
    position: absolute;
    z-index: 2;
    max-width: 90%;
	top: 50%;
	left: 50%;
    transform: translate(-50%, -50%);
}
.panel-header{
	text-align: center;
	padding:0 50px 30px;
}


.logo{
	display: block;
  	max-width: 100%;
  	width: 100%;
	  height: auto;
	  min-width: 150px;
}

.logo-index {
	margin: 0 auto;
}

@media (min-width: 540px){
	.panel-header{
		padding:0 120px 30px;
	}
}

/* Forms */
.form-group{
	margin-bottom: 20px;
}
.form-group label,
.form-group a{
	font-size: 14px;
	font-weight: 600;
	text-transform: uppercase;
}
.form-group a{
	text-transform: none;
	font-weight: 300;
}

.checkbox{
	text-align: center;
}
.help-block{
	color: #aaa;
	font-size: 13px;
}
.remember-me label{
	text-transform: none;
	font-weight: normal;
}

/* Buttons */

.btn{
	-webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
	transition: all 0.3s;
}

.btn-primary{
		border-color: #888c46;
	background-color: #888c46;
	-webkit-transition: background-color .3s, color .3s, -webkit-transform .3s;
    transition: background-color .3s, color .3s, transform .3s;
}
.btn-primary:hover, .btn-primary:active, .btn-primary:focus{
	border-color: #9a9e51;
	background-color: #9a9e51;
}
.btn-lg {
	font-size: 21px;
	/* padding: 8px; */
	margin-top: 15px;
}
@media (min-width: 768px){
	.btn-lg{
		font-size: 24px;
		padding: 10px;
	}
}



/* Shake login button on error */
.btn-error {
	-webkit-animation: shake 0.5s;
	-moz-animation: shake 0.5s;
	animation: shake 0.5s;
}

/* From Dan Eden's animate.css: http://daneden.me/animate/ */
@-webkit-keyframes shake {
	0%, 100% {-webkit-transform: translateX(0);}
	10%, 30%, 50%, 70%, 90% {-webkit-transform: translateX(-10px);}
	20%, 40%, 60%, 80% {-webkit-transform: translateX(10px);}
}

@-moz-keyframes shake {
	0%, 100% {-moz-transform: translateX(0);}
	10%, 30%, 50%, 70%, 90% {-moz-transform: translateX(-10px);}
	20%, 40%, 60%, 80% {-moz-transform: translateX(10px);}
}

@keyframes shake {
	0%, 100% {transform: translateX(0);}
	10%, 30%, 50%, 70%, 90% {transform: translateX(-10px);}
	20%, 40%, 60%, 80% {transform: translateX(10px);}
}


