@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600&family=Work+Sans:wght@300;400;500;600;700&display=swap');

:root{
	--white: #fff;
	--bg-color: #FBFBFB;
	--primary: #061E66 !important;
	--dark: #4C4D51;
	--border: #f3f3f3;
	--border-radius: 4px;
	--text-muted: #888;
	--font-sm: 0.9rem;
	--font-family: 'Poppins', 'Work Sans', Arial, Helvetica, sans-serif;
}

*{
	box-sizing: border-box;
	padding: 0;
	margin: 0;
	font-family: var(--font-family);
}

/* App */
html, body {
	min-height: 100%;
}

body {
	overflow-x: hidden;
	background-color: var(--bg-color);
	font-size: 16px;
}

#app.full-height {
	height: 100%;
}

.main-loader {
	position: fixed;
	right: 20px;
	bottom: 20px;
	/* display: none; */
	z-index: 999999;
}

.main-loader.shown {
	display: block;
}

.loader div {
	width: 18px;
	height: 18px;
	background-color: #000;
	opacity: 0.4;

	border-radius: 100%;
	display: inline-block;
	-webkit-animation: sk-bouncedelay 1.4s infinite ease-in-out both;
	animation: sk-bouncedelay 1.4s infinite ease-in-out both;
}

.loader .bounce1 {
	-webkit-animation-delay: -0.32s;
	animation-delay: -0.32s;
}

.loader .bounce2 {
	-webkit-animation-delay: -0.16s;
	animation-delay: -0.16s;
}

@-webkit-keyframes sk-bouncedelay {
	0%, 80%, 100% { -webkit-transform: scale(0) }
	40% { -webkit-transform: scale(1.0) }
}

@keyframes sk-bouncedelay {
	0%, 80%, 100% { 
		-webkit-transform: scale(0);
		transform: scale(0);
	}
	40% { 
		-webkit-transform: scale(1.0);
		transform: scale(1.0);
	}
}
/* App ending */

.container {
	height: 100%;
}

.row {
	height: 100%;
}

.logo {
	margin-bottom: 35px;
}

.logo img {
	max-width: 329px;
}

#login-box {
	border-radius: var(--border-radius);
	padding: 40px 40px;
	background-color: var(--white);
	width: 100%;
	max-width: 400px;
	min-width: 250px;
	box-shadow: 0px 0px 0px .5px rgba(0,0,0,0.05);
	border: 1px solid var(--border);
}

@media(max-width: 575px) {
	#login-box {
		padding: 25px 25px;
	}
}

.form-group > label, .form-group > legend {
	font-size: 0.9rem;
	color: #666666;
	font-weight: 500;
}

/* Added 07/27/23 */
.float-left{
	position: absolute;
	top: 12px;
	left: 15px;
}

.btn-primary{
	background-color: var(--primary);
	border-color: var(--primary);
}

.form-control{
	padding-left: 40px;
}