input {
    -webkit-appearance: none;
}
#lost_password_form {
    display: none;
}

#reset_form {
    display: none;
}

#success_message {
    display: none;
}
/*******************************/
body{
	font-family: Arial, sans-serif;
	font-size: 13px;
	margin: 0px;
}
*{
	box-sizing: border-box;
}
.login{
	padding: 30px 20px;
	background: transparent;
	width: 570px;
	position: absolute;
	z-index: 1;
	top: 50%;
	left: 50%;
	margin: auto;
	-webkit-transform: translate(-50%,-50%);
	-ms-transform: translate(-50%,-50%);
	transform: translate(-50%,-50%);
	font-size: 18px;
}
.header-login{
	width: 100%;
	text-align: center;
	padding: 0px 10px 20px;
}
.header-login img{
	width: 280px;
}

.fix-bg{
	position: fixed;
	top: 0px;
	left: 0px;
	width: 100%;
	height: 100%;
  	z-index: 0;
}
.bg {
  position: absolute;
  height: 100%;
  width: 100%;
  -ms-transform: scale(1.05); /* IE 9 */
    -webkit-transform: scale(1.05); /* Safari */
    transform: scale(1.05);
   background: url(../images/bg.jpg) center center no-repeat;
   background-size: cover;
}
.input-form{
	width: 100%;
	text-align: center;
	font-family: 'Montserrat', sans-serif;
	border-radius: 4px;
	background-color: transparent;
    border-radius: 4px;
    border:2px solid #fff;
    color: #fff;
    font-size: 18px;
    line-height: 100%;
    padding: 16px 10px;
    margin-bottom: 15px;
    display: inline-block;
}
.submit-form{
	background-color: #ff4040;
    border-radius: 4px;
    cursor: pointer;
    display: inline-block;
    padding:16px 30px;
    text-align: center;
    width: 100%;
    border:none;
	font-size: 18px;
	font-family: 'Open Sans', sans-serif;
	font-weight: 700;
	color: #fff;
}
.submit-form:hover {
    -webkit-filter: brightness(1.1);
    filter: brightness(1.1);
}
.lost-psw{
	color: #fff;
    font-family: 'Open Sans';
    font-size: 16px;
    line-height: 136%;
    text-align: center;
    cursor: pointer;
    margin-top: 15px;
}
.success-message{
	color: #fff;
	padding: 10px;
}
.login-text{
	text-align: center;
	padding: 0px 0px 20px;
	color: #ffce21;
    font-family: 'Montserrat';
    font-size: 33px;
    font-weight: 400;
    line-height: 120%;
}

/* parallax bg style */
.container, .layer{
	width: 100%;
	position: fixed;
	top: 0px;
	left: 0px;
	height: 100%;
}
ul,li{
  margin: 0px;
  padding: 0px;
}
.scene {
  padding: 0;
  margin: 0;
  width: 100%;
  height: 100%;
}

.login_error {
    color: #ea4949;
    text-align: center;
    padding: 0 0 20px 0;
}

@media only screen and (max-width: 640px) {
	.login{
		padding: 30px 20px;
		border-radius: 10px;
		max-width: 94%;

	}
}
@media only screen and (max-height: 320px) {
	.login{
		position: relative;
		top: 0px; left: 0px;
		margin: 0px auto;
		-webkit-transform: translate(0%,0%);
		-ms-transform: translate(0%,0%);
		transform: translate(0%,0%);
	}
}
