@charset "utf-8";
/* CSS Document */

body{
	background-color: #de5639;
}
html, body{
	height: 100%;
}
.logo {
    padding: 5px;
	text-align: center;
}
.logo img{
	width: 100%;
}
.login-block{
    width: 340px;
    padding: 30px;
    background: #fff;
    border-radius: 5px;
    border-top: 5px solid #de5639;
    margin: 0 auto;
}
#reasonBox, .mobileUnit{
	margin-bottom: 15px;
	margin-left: -30px;
	margin-right: -30px;
	padding: 0px 20px 20px 20px;
	border-bottom: 5px solid #de5639;
	border-top-left-radius: 5px;
	border-top-right-radius: 5px;
	text-align: center;
	font-style: italic;
}
.input-field{
	margin: 0px;
}
.input-field input:focus + label,
.input-field .prefix.active{
	color: #de5639 !important;
}
.input-field input:focus{
	border-bottom: 1px solid #de5639 !important;
	box-shadow: 0 1px 0 0 #de5639 !important;
}
.login-block .btn {
    width: 100%;
	background: #de5639;
}

.login-block .btn:hover{
    background: #c53010;
}
#lostPass{
	float: right;
	color: #de5639;
	margin-top: 5px;
}
h4{
	margin: 0px;
	font-size: 18px;
}
.mobileUnit{
	display: none;
    width: 340px;
    background: #fff;
	border: none;
	border-radius: 0px;
    margin: 0 auto;
	padding: 20px;
}
@media only screen and (max-width: 700px) {
	.login-block{
		display: none;
	}
	.mobileUnit{
		display: block;
	}
}