/* Import Fonts */
@import url('https://fonts.googleapis.com/css?family=Mada:400,500,600,700&display=swap');

@font-face {
	font-family: 'Material Icons';
	font-style: normal;
	font-weight: 400;
	src: url(../fonts/MaterialIcons-Regular.eot); /* For IE6-8 */
	src: local('Material Icons'), local('MaterialIcons-Regular'),
		url(../fonts/MaterialIcons-Regular.woff2) format('woff2'),
		url(../fonts/MaterialIcons-Regular.woff) format('woff'),
		url(../fonts/MaterialIcons-Regular.ttf) format('truetype');
}

/* Global Styles */
html, body {
	height: 100%;
	background-color: #f8f9fa;
	color: #333;
	font-family: 'Mada', sans-serif;
	font-size: 1rem;
	line-height: 1.5;
	overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
	font-family: 'Mada', sans-serif;
	margin-top: 0;
}

a {
	color: #0dd9f9;
	transition: color 0.4s ease;
	text-decoration: none;
}

a:hover, a:active, a:focus {
	color: #00d0f1;
	outline: none;
}

/* Form Styles */
.form-control {
	border: 1px solid #ddd;
	box-shadow: none;
	color: #333;
	font-size: 15px;
	height: 40px;
	transition: all 0.4s ease;
}

.form-control:focus {
	border-color: #00d0f1;
	box-shadow: none;
	outline: 0;
}

.form-control-sm {
	height: calc(1.5em + .5rem + 2px);
}

.form-control-lg {
	height: calc(1.5em + 1rem + 2px);
}

input[type="file"] {
	height: auto;
	min-height: calc(1.5em + .75rem + 2px);
}

/* Content Styles */
.main-wrapper {
	width: 100%;
	height: 100vh;
	min-height: 100vh;
}

.page-wrapper {
	margin-left: 240px;
	padding-top: 60px;
	transition: margin-left 0.4s ease;
}

.page-wrapper > .content {
	padding: 1.875rem;
}

.page-header {
	margin-bottom: 1.875rem;
}



/* Login Styles */
.login-body {
	display: table;
	height: 100vh;
}

.login-wrapper {
	width: 100%;
	height: 100%;
	display: table-cell;
	vertical-align: middle;
}

.loginbox {
	background-color: #fff;
	border-radius: 6px;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
	display: flex;
	margin: 1.875rem auto;
	max-width: 800px;
	min-height: 500px;
	width: 100%;
}

.login-right {
	align-items: center;
	background: linear-gradient(180deg, #3559C7, #00d0f1);
	border-radius: 6px 0 0 6px;
	display: flex;
	justify-content: center;
	padding: 80px;
	width: 300px;
}
.login-right img {
    max-width: 100%;
    min-width: 320px;;
    height: auto;
    object-fit:fill;
}

.login-left {
	align-items: center;
	display: flex;
	justify-content: center;
	padding: 40px;
	width: 600px;
}

.login-left-wrap {
	width: 100%;
}

.login-left h1 {
	font-size: 26px;
	font-weight: 500;
	text-align: center;
	margin-bottom: 5px;
}

.account-subtitle {
	color: #4c4c4c;
	font-size: 17px;
	text-align: center;
	margin-bottom: 1.875rem;
}

.forgotpass a {
	color: #a0a0a0;
	transition: color 0.4s ease;
}

.forgotpass a:hover {
	color: #333;
	text-decoration: underline;
}

.dont-have {
	color: #a0a0a0;
	margin-top: 1.875rem;
}

.dont-have a {
	color: #333;
	transition: color 0.4s ease;
}

.dont-have a:hover {
	text-decoration: underline;
}

/* Responsive Styles */
@media only screen and (max-width: 991.98px) {
	.login-right {
		width: 50%;
		padding: 50px;
	}

	.login-left {
		width: 50%;
		padding: 80px 50px;
	}
}

@media only screen and (max-width: 767.98px) {
	body {
		font-size: 0.9375rem;
	}

	h1, .h1 { font-size: 2rem; }
	h2, .h2 { font-size: 1.75rem; }
	h3, .h3 { font-size: 1.5rem; }
	h4, .h4 { font-size: 1.125rem; }
	h5, .h5 { font-size: 1rem; }
	h6, .h6 { font-size: 0.875rem; }

	.login-right {
		display: none;
	}

	.loginbox {
		max-width: 450px;
	}

	.login-left {
		padding: 1.875rem;
		width: 100%;
	}

	.login-left h1 {
		font-size: 22px;
	}
}
