body,
html {
	margin: 0;
	height: 100%;
}
body {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 13px;
	color: #454545;
}
#top-bandrole {
	background: url(logo.png) 40px 20px no-repeat #65ac1e;
	width: 100%;
	height: 80px;
}
#content {
	position: relative;
	height: calc(100% - 80px);
	background: #f7f5f5;

	.message {
		position: absolute;
		top: 0px;
		padding: 20px 40px;
		font-size: 20px;
		color: #000000;
	}
}
#form {
	max-width: 850px;
	min-width: 500px;
	position: absolute;
	width: 40%;
	top: 5%;
	right: 5%;
	background: white;
}
#form .header {
	line-height: 40px;
	height: 40px;
	text-align: center;
	font-weight: bold;
	font-size: 1.5em;
	color: #fff;
	background: #65ac1e;
}
#form .content {
	padding: 5%;
}
#form button,
#forgot-password-popup button {
	border: none;
	padding: 0px;
	display: inline-block;
	line-height: 30px;
	width: 200px;
	color: white;
	background: #65ac1e;
	cursor: pointer;
}
.login-username-container {
	margin: 0 0 20px 0;
}
.login-password-container {
	margin: 0 0 20px 0;
}
.input-label {
	font-size: 1em;
	font-weight: bold;
	display: inline-block;
	padding-bottom: 5px;
}
input {
	width: 100%;
	font-size: 18px;
}
.error-login {
	display: none;
	color: red;
	font-size: 1em;
	margin-bottom: 15px;
}

.login-button-group,
.button-divider {
	text-align: center;
}

#forgot-password-popup {
	position: absolute;
	top: calc(50% - 85px);
	left: calc(50% - 160px);
	height: 170px;
	width: 320px;
	background-color: #ffff;
}

.popup-top-banner {
	height: 30px;
	line-height: 30px;
	text-align: center;
	background: #65ac1e;
	color: #fff;
	font-weight: bold;
}

.close-popup.corner {
	position: absolute;
	line-height: 26px;
	height: 30px;
	top: 0px;
	right: 10px;
	color: #fff;
	font-size: 15px;
}

#forgot-password-email {
	width: 275px;
	margin-bottom: 10px;
}

.popup-content {
	padding: 0 15px;
	text-align: center;
	height: 140px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

.popup-content > p {
	margin: 0 0 10px 0;
}

/* .popup-content .close-popup {
	margin-top: 20px;
} */

#prevent-interaction {
	position: fixed;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	background-color: rgba(0, 0, 0, 0.5);
}

@media screen and (max-width: 850px) {
	#form {
		min-width: 300px;
		right: calc(50% - 150px);
	}
	#login {
		margin-bottom:15px;
	}
}