@CHARSET "ISO-8859-1";
/* login page */

body.loginpage {
	height: 100%;
	width: 100%;
	background: url('../images/loginbg.jpg') center center no-repeat;
	background-size: cover;
	position: relative;
}
.login {
	width: 400px;
	background-color: #f8f8f8;
	position: absolute;
	left:50%;
	top: 50%;
	-ms-transform: translate(-50%, -50%); /* IE 9 */
	-webkit-transform: translate(-50%, -50%); /* Safari */
	transform: translate(-50%, -50%);
}
.login-footer {
    position: absolute;
    bottom:20px;
    width:100%;
    text-align:center;
}
.login-footer span {
    font-family: Montserrat-Light;
    font-size: 14px;
    color: #b7b5b5;
}
.login-logo {
	text-align: center;
	padding: 40px 0;
	border-bottom: 10px solid #e74d3c;
	background: #f28072; /* Old browsers */
	background: -moz-linear-gradient(top, #f28072 0%, #f74b38 100%); /* FF3.6-15 */
	background: -webkit-linear-gradient(top, #f28072 0%,#f74b38 100%); /* Chrome10-25,Safari5.1-6 */
	background: linear-gradient(to bottom, #f28072 0%,#f74b38 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f28072', endColorstr='#f74b38',GradientType=0 ); /* IE6-9 */
}
.newUser-logo {
	padding: 30px 0;
}
.login-form {
	border-radius: 0 0 10px 10px;
	border: 1px solid #bebebe;
	padding: 30px;
}

.forgetPassword-form {
	border-radius: 0 0 10px 10px;
	border: 1px solid #bebebe;
	padding: 1px;
}

a.login-link {
	color: #b7b5b5;
	text-decoration: none;
	font-size: 14px;
	text-align: right;
}
a.login-link:hover {
	color: #5c5857;
}
.login-input {
    position: relative;
    margin-top: 20px;
    margin-bottom: 20px;
    border-bottom: 1px solid #bbbbbb;
    height: 40px;
    width: 100%;
}
.login-input input {
    border: none;
    color: #5c5857;
    width: 100%;
    height: 39px;
    background: #f8f8f8;
    font-family: Montserrat-Regular;
    font-size: 14px;
    padding: 0 50px 0 10px;
}
.login-input input:focus {
    outline: none;
}
.login-input:after {
    position: absolute;
    width: 40px;
    height: 30px;
    top: 0;
    right: 0;
    font-family: FontAwesome;
    color: #ffffff;
    font-size: 18px;
    padding-top: 10px;
    text-align: center;
    background: #5c5857;
}
.login-user:after {
    content: "\f007";
}
.login-pass:after {
    content: "\f084";
}

.login-btn{
	font-family: Montserrat-Regular; 
	background-color: #f75b49 !important;
	background-image: none;
	border: none;
	font-size: 16px;
	color: #ffffff !important;
	text-transform: capitalize;
	border-radius: 30px;
	width: 250px;
	height: 50px;
	margin: 30px auto;
}

button.login-btn:hover {
	background-color: #f75b49 !important;
}

input[type="button"].new-btn {
	width: 100px;
	height: 40px;
}

input[type="button"].login-btn:hover {
	background-color: #e74d3c !important;
}

/* checkbox styles */

.styled-checkbox {
  position: absolute;
  opacity: 0;
}
.styled-checkbox + label {
  position: relative;
  cursor: pointer;
  padding: 0;
  color: #b7b5b5;
  font-size: 14px;
}
.styled-checkbox + label:before {
  content: "";
  margin-right: 10px;
  display: inline-block;
  vertical-align: text-top;
  width: 20px;
  height: 20px;
  background: white;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.12);
}
.styled-checkbox:checked + label:before {
  background: #f75b49;
}
.styled-checkbox:checked + label:after {
  content: "";
  position: absolute;
  left: 5px;
  top: 9px;
  background: white;
  width: 2px;
  height: 2px;
  box-shadow: 2px 0 0 white, 4px 0 0 white, 4px -2px 0 white, 4px -4px 0 white, 4px -6px 0 white, 4px -8px 0 white;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.errormsg {
	color: #ff0000;
	font-size: 14px;
	font-family: Montserrat-Regular;
}

.successmsg {
	font-size: 14px;
	color: #347235;
	font-family: Montserrat-Regular;
}

.indent-message {
	margin-left: 50px;
}

.newUser-btn {
	font-family: Montserrat-Regular; 
	background-color: #f75b49 !important;
	background-image: none;
	border: none;
	font-size: 16px;
	color: #ffffff !important;
	text-transform: capitalize;
	border-radius: 30px;
	width: 140px;
	height: 50px;
	margin: 30px auto;
}

button.newUser-btn:hover {
	background-color: #f75b49 !important;
}


input[type="button"].newUser-btn:hover {
	background-color: #e74d3c !important;
}

