body {
	font-family: Verdana, Tahoma, Arial, "Trebuchet MS", Sans-Serif, Georgia, Courier, "Times New Roman", Serif;
	font-size: 8pt;
	background: #212121;
	margin: 0;
	padding: 0;
	height: 100%;
}

.wrapper {
	text-align: left;
	width: 100%;
	height: 100%;
	padding: 20% 0px;
	position: relative;
}

.wrapper2 {
	/*pentru email-gateway*/
	text-align: left;
	width: 100%;
	height: 100%;
	padding: 10% 0px;
	position: relative;
}

.logo {
	width: 150px;
	height: 150px;
	margin: 10px 2px 2px 20px;
	background: url('logo.png') no-repeat;
}

.main {
	width: 500px;
	height: 170px;
	margin: 0 auto;
	color: #FFFFFF;
	background: #1f1f1f;
	-moz-box-shadow: 0 0 10px 5px #000;
	-webkit-box-shadow: 0 0 10px 5px #000;
	box-shadow: 0 0 10px 5px #000;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
	padding-inline: 5px;
	padding-top: 5px;
}

.main2 {
	/*pentru email-gateway*/
	width: 600px;
	height: 580px;
	margin: 0 auto;
	color: #FFFFFF;
	background: #1f1f1f;
	-moz-box-shadow: 0 0 10px 5px #000;
	-webkit-box-shadow: 0 0 10px 5px #000;
	box-shadow: 0 0 10px 5px #000;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
}

.clearfix:after {
	content: ".";
	display: block;
	height: 0;
	clear: both;
	visibility: hidden;
	overflow: hidden;
	float: none;
}

.clearfix {
	display: block;
}

a:link,
a:visited {
	text-decoration: none;
	font-weight: bold;
	color: #ffffff;
}

a:hover {
	color: #E0E0E0;
}

input {
	font-family: tahoma;
	font-size: 9pt;
	background: #ffffff;
	padding: 4px 4px;
	border: 1px solid #e2e2e2;
	-moz-border-radius: 3px;
	-webkit-border-radius: 3px;
	border-radius: 3px;
}

input:focus,
input:hover {
	border: 1px solid #0099FF;
}

input.btn {
	background: url('btn.gif');
	background-repeat: no-repeat;
	background-color: transparent;
	background-position: 0 0;
	width: 70px;
	height: 20px;
	padding: 2px 0px 4px 0px;
	font-size: 7pt;
	border: none;
	cursor: pointer;
	color: #555 !important;
}

input.btn:hover {
	background: url('btn.gif');
	background-repeat: no-repeat;
	background-color: transparent;
	background-position: 0 -20px;
	width: 70px;
	height: 20px;
	padding: 2px 0px 4px 0px;
	font-size: 7pt;
	border: none;
	cursor: pointer;
	color: #fff !important;
}

input#username,
input#password,
input#code {
	padding-left: 30px;
}

input#username {
	background: #ffffff url('username.png') 4px center no-repeat;
	width: 265px;
}

input#password {
	background: #ffffff url('password.png') 4px center no-repeat;
	width: 265px;
}

.login-options {
	display: flex;
	align-items: center;
	/* Vertically aligns everything in the middle */
	justify-content: flex-start;
	/* Keeps everything on one line */
	position: relative;
	flex-wrap: nowrap;
	margin-top: 5px;
	/* Prevents wrapping */
}

.checkbox {
	display: flex;
	align-items: center;
	/* Vertically centers the checkbox and text */
	margin-left: 6px;
}

.checkbox input {
	margin-right: 5px;
}

.checkbox small {
	font-weight: bold;
	margin-bottom: 0;
	margin-right: 2px;
	/* Ensures no vertical spacing issue */
}

.separator {
	margin: 0 5px;
	/* margin-right: 2px; */
	/* margin-left: 2px; */
	color: #fff;
	line-height: 1;
	/* Ensures separator stays aligned */
}

.links {
	margin-right: 2px;
	display: flex;
	align-items: center;
	/* Vertically centers the links */
}

.links a {
	text-decoration: none;
	font-size: 12px;
	align-items: right;
	margin-right: 0px;
	margin-left: 0px;
}

.links a small {
	align-self: auto;
	font-weight: normal;
}

.login-btn {
	margin-left: auto;
	display: flex;
	align-items: center;
	margin-right: 9px;
}

message-box {
	display: grid;
	grid-template-columns: 50px auto;
	align-items: center;
	gap: 10px;
}

.icon img {
	width: 40px;
	height: 40px;
}

.message-text {
	display: flex;
	flex-direction: column;
}

.message-heading {
	font-size: 14px;
	font-weight: bold;
}

.message-body {
	font-size: 11px;
	margin-top: 5px;
}

.button-container {
	width: 100%;
	display: flex;
	justify-content: flex-end;
	margin-top: 20px;
}

.js-warning {
	background-color: #ff4444;
	color: white;
	padding: 10px;
	text-align: center;
	font-weight: bold;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 9999;
}

.js-warning a {
	color: #fff;
	text-decoration: underline;
	font-weight: bold;
}