
/*=========================================================================*/

	/* [Font Styles] */
	
	@font-face {
		font-family: 'franklin_gothic_bookregular';
		src: url('../dist/fonts/frabk-webfont.eot');
		src: url('../dist/fonts/frabk-webfont.eot?#iefix') format('embedded-opentype'),
			 url('../dist/fonts/frabk-webfont.woff') format('woff'),
			 url('../dist/fonts/frabk-webfont.ttf') format('truetype'),
			 url('../dist/fonts/frabk-webfont.svg#franklin_gothic_bookregular') format('svg');
		font-weight: normal;
		font-style: normal;
	
	}
	@font-face {
		font-family: 'franklin_gothic_medium_condRg';
		src: url('../dist/fonts/framdcn-webfont.eot');
		src: url('../dist/fonts/framdcn-webfont.eot?#iefix') format('embedded-opentype'),
			 url('../dist/fonts/framdcn-webfont.woff') format('woff'),
			 url('../dist/fonts/framdcn-webfont.ttf') format('truetype'),
			 url('../dist/fonts/framdcn-webfont.svg#franklin_gothic_medium_condRg') format('svg');
		font-weight: normal;
		font-style: normal;
	
	}
	
	@font-face {
		font-family: 'franklin_gothic_bookregular';
		src: url('../dist/fonts/frabk-webfont.eot');
		src: url('../dist/fonts/frabk-webfont.eot?#iefix') format('embedded-opentype'),
			 url('../dist/fonts/frabk-webfont.woff') format('woff'),
			 url('../dist/fonts/frabk-webfont.ttf') format('truetype'),
			 url('../dist/fonts/frabk-webfont.svg#franklin_gothic_bookregular') format('svg');
		font-weight: normal;
		font-style: normal;
	}
	
	
	@media screen and (-webkit-min-device-pixel-ratio:0) {
		@font-face {
			font-family: 'franklin_gothic_bookregular';
			src: url('../dist/fonts/frabk-webfont.svg') format('svg');
		}
		@font-face {
			font-family: 'franklin_gothic_medium_condRg';
			src: url('../dist/fonts/framdcn-webfont.svg') format('svg');
		}
		@font-face {
			font-family: 'franklin_gothic_bookregular';
			src: url('../dist/fonts/frabk-webfont.svg') format('svg');
		}
	}




*
{
	margin: 0;
	padding: 0;
}
.spacer
{
	display: block;
	clear: both;
	line-height: 0;
	overflow: hidden;
}
.error
{
	font-size: 12px;
	font-weight: normal;
	color: #ff0000;
	display: block;
	clear: both;
	text-align: center;
}
.login_bg {
	/* background: url(../images/EtcLoginBackground.jpg) no-repeat center center fixed;     //Commented by Mainak 2021/11/17 */
	background-color: #002060; /* Added by Mainak 2021/11/17 */
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
	position: relative;
}
.login_box
{
	width: 300px;
	margin: 100px auto;
	background-color: #fff;
	border-radius: 30px;
	padding: 45px 50px 30px 50px;
	font-family: 'Lato' , sans-serif;
	text-align: left;
	clear: both;
	display: block;
	overflow: hidden;
}
.login_box p
{
	text-align: left;
	font-size: 18px;
	font-weight:700;
	color: var(--colDefMain, #1843c5);
	margin-bottom: 20px;
	margin-top:10px;
	text-transform: uppercase;
	font-family:"Lato",sans-serif;
}
.form_sect
{
	float: left;
	margin-bottom: 5px;
	display: block;
	clear: both;
	width: 100%;
}
.form_sect label {
	width: 100px;
	float: left;
	line-height: 20px;
	text-align: left;
	font-size: 16px;
	color: var(--colDefMain, #1843c5);
	font-family: "Lato",sans-serif;
	font-weight: 700;
}
.form_sect input
{
	line-height: 20px;
	height: 20px;
	width: 175px;
	background-color: #ccc;
	border: none;
	border: 0;
	padding-left: 5px;
	padding-right: 5px;
}
.fp {
	display: grid;
	grid-template-columns: 55% 5% 40%;
	clear: both;
	width: 100%;
	float: left;
	margin: 10px 0 20px 0;
}
	.fp a {
		grid-row: 1;
		grid-column: 1;
		float: left;
		font-size: 13px;
		color: var(--colDefMain, #1843c5);
		align-self: center;
		text-decoration: underline;
	}
		.fp a:hover {
			text-decoration: none;
			color: var(--colDefMainHover)
		}

	.fp input.login_btn {
		background-color: transparent;
		border-color: #0e5ab7;
		color: #0e5ab7;
		font-size: 16px;
		grid-row: 1;
		grid-column: 3;
		padding: 6px 5px;
		border: 2px solid #0d54ab !important;
		border-radius: 30px;
		cursor: pointer;
		float: right;
		text-transform: uppercase;
		font-weight: 400;
		font-family: var(--typeFontDef, "franklin_gothic_medium_condRg");
		align-self: center;
		transition: background-color 0.3s, color 0.3s, transform 0.3s, box-shadow 0.3s;
	}

		.fp input.login_btn:hover {
			background-color: #0d54ab;
			color: white;
			transform: translateY(-2px);
			box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15);
		}

		.fp input.login_btn:active {
			transform: translateY(2px);
		}

	.fp .login_btn.returnButton {
		border-radius: 30px;
		border: 2px solid red;
		background-color: transparent;
		color: red;
		transition: background-color 0.3s, color 0.3s, transform 0.3s, box-shadow 0.3s;
	}

		.fp .login_btn.returnButton:hover {
			background-color: red;
			color: white;
			transform: translateY(-2px);
			box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15);
		}

		.fp .login_btn.returnButton:active {
			transform: translateY(2px);
		}
/*.foot_logo
{
	position: fixed;
	right: 0;
	background-color: #fff;
	padding: 15px 20px;
	bottom: 0;
}*/
@media (max-width: 767px)
{
	
	.login_box
	{
		width: 80%;
		padding: 6%;
		margin: 10% auto 20% auto;
	}
	.form_sect label
	{
		display: block;
		clear: both;
		width: 90%;
	}
	.form_sect input
	{
		display: block;
		clear: both;
		width: 90%;
	}
	.fp
	{
		width: 80%;
	}
	.foot_logo img
	{
		width: 100%;
	}
	/*.foot_logo
	{
		padding: 5px 10px;
		position: absolute;
	}*/
	.fp input.login_btn
	{
		margin-right:0;
	}
}
@media (max-width: 360px)
{
	.fp
	{
		margin:0 0 20px 0;
	}
	.fp a
	{
		display:block;
		clear:both;
	}
	.fp input.login_btn
	{
		margin-right:0;
		float:left;
		margin-top:10px;
		display:block;
		clear:both;
	}
	.login_box
	{
		margin-bottom: 30%;
	}
	/*.foot_logo
	{
		padding: 5px 10px;
		position: absolute;
	}*/
	.login_box img
	{
		width: 100%;
	}
}

/*Handles the placement of the logo*/
/*Added by Stephen 24-05-22*/
@media only screen and (min-width: 768px) {
	.foot_logo {
		position: fixed;
		float: right;
		top: unset;
		right: 0px;
		bottom: 0px;
		padding-bottom: 15px;
		padding-right: 15px;
	}
}

@media only screen and (max-width: 768px) and (max-height: 640px) {
	.foot_logo {
		position: absolute;
		top: 470px;
		right: 0px;
		bottom: unset;
		padding-right: 10px;
		padding-bottom: 10px;
	}
}

@media only screen and (max-width: 768px) and (min-height: 640px) {
	.foot_logo {
		position: fixed;
		float: right;
		top: unset;
		right: 0px;
		bottom: 0px;
		padding-right: 10px;
		padding-bottom: 10px;
	}
}