body{
	font-family: Arial,sans-serif;
}
.login-container{
	min-height: 100vh;
	display: flex;
	align-items: center;
	/*background: rgba(255,255,255,1);
	background: -moz-linear-gradient(top, rgba(255,255,255,1) 0%, rgba(255,255,255,1) 31%, rgba(245,253,255,1) 49%, rgba(224,251,255,1) 63%, rgba(217,247,255,1) 78%, rgba(176,237,255,1) 100%);
	background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(255,255,255,1)), color-stop(31%, rgba(255,255,255,1)), color-stop(49%, rgba(245,253,255,1)), color-stop(63%, rgba(224,251,255,1)), color-stop(78%, rgba(217,247,255,1)), color-stop(100%, rgba(176,237,255,1)));
	background: -webkit-linear-gradient(top, rgba(255,255,255,1) 0%, rgba(255,255,255,1) 31%, rgba(245,253,255,1) 49%, rgba(224,251,255,1) 63%, rgba(217,247,255,1) 78%, rgba(176,237,255,1) 100%);
	background: -o-linear-gradient(top, rgba(255,255,255,1) 0%, rgba(255,255,255,1) 31%, rgba(245,253,255,1) 49%, rgba(224,251,255,1) 63%, rgba(217,247,255,1) 78%, rgba(176,237,255,1) 100%);
	background: -ms-linear-gradient(top, rgba(255,255,255,1) 0%, rgba(255,255,255,1) 31%, rgba(245,253,255,1) 49%, rgba(224,251,255,1) 63%, rgba(217,247,255,1) 78%, rgba(176,237,255,1) 100%);
	background: linear-gradient(to bottom, rgba(255,255,255,1) 0%, rgba(255,255,255,1) 31%, rgba(245,253,255,1) 49%, rgba(224,251,255,1) 63%, rgba(217,247,255,1) 78%, rgba(176,237,255,1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#b0edff', GradientType=0 );
	 */
	background:#005072 url(../../content/images/login/login-bg.png) no-repeat center;
	background-size: cover;
}

.login-wrp{
	width: 550px;
	border: 2px solid rgb(102, 102, 102);
	margin: 0 auto;
	background-color: #fff;
}

.login-wrp .hexagon-logo-wrp{
	text-align: center;
	margin: 20px 0px;
}
.login-wrp .hexagon-logo-wrp img{
	max-width:160px;
}
.login-wrp .error-text{
	margin: 10px 0px;
	padding: 7px 10px;
	background-color: rgb(102, 102, 102);
	color: rgb(255, 255, 255);
}

.login-wrp .form-inner-container{
	margin: 25px;
}

.login-wrp .form-container .login-input{
	padding: 8px;
	padding-left: 0px;
	display: block;
	border: none;
	border-bottom: 1px solid #c9c9c9;
	width: 100%;
}

.login-wrp input::-webkit-input-placeholder,
.login-wrp input::-moz-placeholder,
.login-wrp input:-ms-input-placeholder,
.login-wrp input:-moz-placeholder {
	color: #c9c9c9;
	font-family: Arial,sans-serif;
	font-size: 14px;
}
.login-wrp .form-group {
	margin-bottom: 20px;
}
.login-wrp .form-group label {
	vertical-align: top;
	margin-left:5px;
}
.login-wrp .submit-button, .login-wrp .request-button {
	padding: 6px 12px 6px;
	background-color:#fff;
	color: #000000;
    border: 1px solid #000000;
	border-radius:0;
	font-weight:bold;
	font-family: Arial,sans-serif;
}
.login-wrp .submit-button:active, 
.login-wrp .submit-button:focus, 
.login-wrp .submit-button:hover,
.login-wrp .request-button:active,
.login-wrp .request-button:focus,
.login-wrp .request-button:hover {
    background-color: #000000;
    color: #ffffff;
}
.login-wrp .button #forgotPwd{
	margin-left: 20px;
	color:#0097ba;
	font-weight: 600;
	vertical-align: top;
}
.login-wrp .backBtn-section{
	margin-top: 20px;
}

.login-wrp .backBtn-section a{
	padding-left: 15px;
	color: #0097ba;
	font-weight: 600;
	position: relative;
	cursor: pointer;
}

.login-wrp .backBtn-section a:before{
	content: '';
	width: 0;
	height: 0;
	border-top: 5px solid rgba(0, 0, 0, 0);
	border-bottom: 5px solid rgba(0, 0, 0, 0);
	border-right: 5px solid rgb(102, 102, 102);
	left: 2px;
	position: absolute;
	top: 3px;
}

.login-wrp .request-form{
	display: none;
}

@media (max-width: 410px) {
	.login-wrp{
		width: 100%;
	}
	.login-wrp .error-container span{
		font-size: 12px;
	}
	.login-wrp .error-container{
		padding: 5px;
	}
}