* {
	margin: 0px;
	padding: 0px;
	box-sizing: border-box;
}

body {
	display: flex;
	flex-direction: column;
	font-family: "Lato", Arial, Helvetica, sans-serif;

	background: #F38423; 
	background: -webkit-linear-gradient(bottom right, #F7B733, #F38423, #FC4A1A);
	background: -o-linear-gradient(bottom right, #F7B733,  #F38423, #FC4A1A);
	background: -moz-linear-gradient(bottom right, #F7B733, #F38423, #FC4A1A);
	background: linear-gradient(bottom right, #F7B733, #F38423, #FC4A1A);
	height: 100vh;
}

a {
	font-size: 14px;
	line-height: 1.7;
	color: #666666;
	margin: 0px;
	transition: all 0.4s;
	-webkit-transition: all 0.4s;
	-o-transition: all 0.4s;
	-moz-transition: all 0.4s;
}

a:focus {
	outline: none !important;
}

a:hover {
	text-decoration: none;
	color: #FFFFFF;
}

input {
	outline: none;
	border: none;
}

input:focus,
input:focus::-webkit-input-placeholder,
input:focus:-moz-placeholder, 
input:focus::-moz-placeholder, 
input:focus:-ms-input-placeholder {
	border-color: transparent !important;
}

input::-webkit-input-placeholder,
input:-moz-placeholder,
input::-moz-placeholder,
input:-ms-input-placeholder {
	color: #FFFFFF;
}

label {
	margin: 0;
	display: block;
}

button {
	outline: none !important;
	border: none;
	background: transparent;
}

button:hover {
	cursor: pointer;
}

.textContainer {
    text-align: center;
    margin-top: 30px;
}

.textContainer a {
	font-size: 18px;
	color: #2B3991;
    line-height: 1.5;
    margin-top: 20px;
}

.textContainer a:hover {
    color: #2B3991;
}

.limiter {
	margin: auto;
}

.mainContainer {
	width: 100%;
	position: relative;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	z-index: 1;
	background-color: #FFFFFF;
	/* opacity: 0.6; */
}

.mainContainer::before {
	content: "";
	background-color: rgba(255, 255, 255, 0.9);
	position: absolute;
	display: block;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: -1;
}

.loginContainer {
	width: 500px;
	height: 561px;
	border-radius: 10px;
	overflow: hidden;
	padding: 30px 50px 30px 50px;
}

@media (max-width: 576px) {
	.loginContainer {
		padding: 55px 15px 37px 15px;
	}
}

.loginForm {
	width: 100%;
}

.loginFormLogo {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 240px;
	height: 140px;
	margin: 20px auto;
}

.loginFormLogo img {
    width: 100%;
}

.loginFormTitle {
	display: block;
	font-size: 25px;
	color: #2B3991;
	line-height: 1.2;
	text-align: center;
    text-transform: uppercase;
    margin-top: 25px;
    margin-bottom: 25px;
}

.inputContainer {
	width: 100%;
	position: relative;
	border-bottom: 2px solid rgba(43, 57, 145, 0.9);
	/* border-bottom: 2px solid rgba(243, 132, 35, 0.9); */
}

.inputClass {
	width: 100%;
	height: 45px;
	display: block;
	color: rgba(43, 57, 145, 0.9);
	/* color: rgba(243, 132, 35, 0.9); */
	line-height: 1.2;
	background: transparent;
	padding: 0 5px 0 38px;
}

.inputClass:focus {
	padding-left: 5px;
}

.inputFocus {
	position: absolute;
	display: block;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	pointer-events: none;
}

.inputFocus::before {
	content: "";
	display: block;
	position: absolute;
	bottom: -2px;
	left: 0;
	width: 0;
	height: 2px;
	-webkit-transition: all 0.4s;
	-o-transition: all 0.4s;
	-moz-transition: all 0.4s;
	transition: all 0.4s;
	background: #FFFFFF;
	/* border-bottom: 2px solid rgba(43, 57, 145, 0.9); */
	border-bottom: 2px solid rgba(243, 132, 35, 0.9);
}

.inputFocus::after {
	font-family: Material-Design-Iconic-Font;
	font-size: 22px;
	color: rgba(43, 57, 145, 0.9);
	/* color: rgba(243, 132, 35, 0.9); */
	content: attr(data-placeholder);
	display: block;
	width: 100%;
	position: absolute;
	top: 6px;
	left: 0px;
	padding-left: 5px;
	-webkit-transition: all 0.4s;
	-o-transition: all 0.4s;
	-moz-transition: all 0.4s;
	transition: all 0.4s;
}

.inputClass:focus + .inputFocus::before {
	width: 100%;
}

.inputClass:focus + .inputFocus::after {
	top: -22px;
	font-size: 18px;
}

.loginBtnContainer {
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}

.loginBtn {
	font-size: 16px;
	color: #555555;
	line-height: 1.2;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 0 20px;
	min-width: 120px;
	height: 50px;
	border-radius: 25px;
	background: #F38423;
	border: 1px solid #F38423;
	position: relative;
	z-index: 1;
}

.loginBtn::before {
	content: "";
	display: block;
	position: absolute;
	z-index: -1;
	width: 100%;
	height: 100%;
	border-radius: 25px;
	background-color: #FFFFFF;
	top: 0;
	left: 0;
	opacity: 1;
	-webkit-transition: all 0.4s;
	-o-transition: all 0.4s;
	-moz-transition: all 0.4s;
	transition: all 0.4s;
}

.loginBtn:hover {
	color: #FFFFFF !important;
}

.loginBtn:hover:before {
	opacity: 0;
}

.errorMsgContainer {
    color: #2B3991;
    font-size: 14px;
    margin-bottom: 30px;
}

/* Loader */
.loaderContainer {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: 19999;
	background-color: rgba(0, 0, 0, 0.2);
}

.loaderContainer i {
	font-size: 50px;
	color: #212121;
}
/* END OF Loader */


/* Modal */
.modal-open {
    padding-right: 0 !important;
}

/* Modal */
.modal-header {
	width: 99.95% !important;
}

.modalStyle .modal-header .modal-title {
    font-size: 14px !important;
}

.modalStyle .modal-header .modal-title i {
    margin-right: 10px;
    font-size: 16px;
    color: #3498db;
}

.modalStyle .modal-header .close {
    padding: 11px 1rem !important;
    margin: -1rem -1rem -1rem auto;
    color: red !important;
    font-size: 29px !important;
    opacity: 1 !important;
}

.modalStyle .modal-body {
    font-size: 14px !important;
}

.modalStyle .modal-content {
    border-radius: 0 !important;
}

.modalStyle .btn {
	border-radius: 0 !important;
}

.modalStyle .btn:focus {
    outline: none;
    box-shadow: none !important;
}

.modalOutlineBtnBlue,
.modalOutlineBtnBlue:hover {
   	color: rgb(38, 140, 228) !important;
    border-color: rgb(38, 140, 228) !important;
}

.modalOutlineBtnRed,
.modalOutlineBtnRed:hover {
    color: red !important;
    border-color: red !important;
}
/* END OF Modal */


/* Utilities */
.display-none {
    display: none;
}

.mt-20 {
	margin-top: 20px;
}
/* END OF Utilities */