#login-wrapper {
	width: 100%;
	position: relative;
}

#login-wrapper .alert-msg {
	background: #fff;
    position: relative;
    top: 20px;
    padding: 5px;
    margin-bottom: 30px;
}

.form-login {
	box-sizing: border-box;
	position: relative;
	overflow: hidden;
	z-index:5;
	padding: 0;
	background: #fff;
	margin: 0 auto;
	-moz-box-shadow: 0 0 0.2em #000;
	-webkit-box-shadow: 0 0 0.2em #000;
	box-shadow: 0 0 0.2em #000;
	border-top-right-radius: 4px;
	border-top-left-radius: 4px;
}

.form-login .header {
	padding: 10px 30px 10px 30px;
	background: #f56954;
	text-align: center;
    text-transform: uppercase;
}

.form-login .header h2 {
	font-weight: 400;
	font-size: 18px;
	line-height: 15px;
	color: #fff;
	font-family: 'Montserrat', 'Open Sans', 'sans-serif';
}

.form-login .header span {
	font-size: 11px;
	line-height: 15px;
	color: #678889;
	text-shadow: 1px 1px 0 rgba(256,256,256,1.0);
}

.form-login .content {
	padding: 15px 15px 10px 25px;
}

.form-login .content input {
  box-sizing: border-box;
  display: block;
  width: 100%;
  padding: 20px;
  outline: 0;
  font-family: inherit;
  font-size: 1em;
}
.form-login .content input.form-control {
	height: 60px;
}

.form-login .content .input-group-addon {
	min-width: 120px;
}

.form-login .content input:hover, .form-login .content input:focus{
	color: #414848;
	background-color: #fefefe;
}

.form-login .content input:focus{
	-webkit-box-shadow: 0 0 2px #ed1c24 inset;
	-moz-box-shadow: 0 0 2px #ed1c24 inset;
	-ms-box-shadow: 0 0 2px #ed1c24 inset;
	-o-box-shadow: 0 0 2px #ed1c24 inset;
	box-shadow: 0 0 2px #ed1c24 inset;
	background-color: #fff;
	border: 1px solid #ed1c24;
	outline: none;
}

.form-login .footer {
	padding: 10px 0 0 0;
	overflow: auto;
	border-top: 1px solid #fff;
	box-shadow: inset 0 1px 0 rgba(0,0,0,0.15);
	-moz-box-shadow: inset 0 1px 0 rgba(0,0,0,0.15);
	-webkit-box-shadow: inset 0 1px 0 rgba(0,0,0,0.15);
}

.form-login .footer button[type="submit"] {
  width: 100%;
  padding: 16px;
  background: #fff;
  border-color: transparent;
  color: #333;
  font-size: 1.5em;
  font-weight: bold;
  cursor: pointer;
}


input:-webkit-autofill, textarea:-webkit-autofill, select:-webkit-autofill {
    background-color: #fff !important;
    background-image: none;
    color: rgb(0, 0, 0);
}

input:-webkit-autofill {
    -webkit-box-shadow: 0 0 0px 1000px white inset;
}