input:-webkit-autofill {
    box-shadow: 0 0 0 1000px #FFFFFF inset !important;
    -webkit-box-shadow: 0 0 0 1000px #FFFFFF inset !important;
}

body {
    padding: 0;
    margin: 0;
	font-family: "Lato", Arial, Helvetica, sans-serif;
    
    background: #3B7547;
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #003115), color-stop(100%, #3B7547));
    background: -webkit-linear-gradient(top, #003115 0%, #3B7547 100%);
    background: -o-linear-gradient(top, #003115 0%, #3B7547 100%);
    background: -ms-linear-gradient(top, #003115 0%, #3B7547 100%);
    background: linear-gradient(top, #003115 0%, #3B7547 100%);
    background-repeat: no-repeat;
    background-attachment: fixed;
    
    /* background: #3D8AC4;
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #3D8AC4), color-stop(100%, #1D477A));
    background: -webkit-linear-gradient(top, #3D8AC4 0%, #1D477A 100%);
    background: -o-linear-gradient(top, #3D8AC4 0%, #1D477A 100%);
    background: -ms-linear-gradient(top, #3D8AC4 0%, #1D477A 100%);
    background: linear-gradient(top, #3D8AC4 0%, #1D477A 100%);
    background-repeat: no-repeat;
    background-attachment: fixed; */
}


/* LOGIN PAGE */
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;
    z-index: 99999;
}

.textContainer a {
	font-size: 18px;
	color: rgba(255, 255, 255, 1);
    line-height: 1.5;
    margin-top: 20px;
    z-index: 99999;
}

.textContainer a:hover {
    color: #3B7547;
}

.particles-js {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: -2;
}

.mainContainerLogin {
    width: 30%;
    height: 100vh;
    margin: auto;
    display: flex;
    justify-content: center;
    align-items: center;
	z-index: 1;
}

.loginContainer {
	width: 500px;
	height: 561px;
	border-radius: 10px;
	overflow: hidden;
	padding: 30px 50px 30px 50px;
    background-color: rgba(0, 0, 0, 0.2);
}

#forgotPasswordContainer {
    width: 500px;
	height: 561px;
	border-radius: 10px;
	overflow: hidden;
	padding: 30px 50px 30px 50px;
    background-color: rgba(0, 0, 0, 0.2);
}

@media only screen and (max-width: 1300px) {
	.mainContainerLogin {
		width: 35%;
	}
}
@media (max-width: 900px) {
	.mainContainerLogin {
		width: 80%;
	}
}

.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: rgba(255, 255, 255, 1);
	line-height: 1.2;
	text-align: center;
    margin-top: 25px;
    margin-bottom: 25px;
}

.inputContainer {
	width: 100%;
	position: relative;
	border-bottom: 2px solid rgba(255, 255, 255, 1);
}

.inputClass {
	width: 100%;
	height: 45px;
	display: block;
	color: rgba(255, 255, 255, 1);
	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(255, 255, 255, 1);
}

.inputFocus::after {
	font-family: Material-Design-Iconic-Font;
	font-size: 22px;
	color: rgba(255, 255, 255, 1);
	/* 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;
    font-weight: bold;
	color: #3B7547;
	line-height: 1.2;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 0 20px;
	min-width: 120px;
	height: 50px;
	border-radius: 25px;
	background: rgba(255, 255, 255, 1);
	border: 1px solid rgba(255, 255, 255, 1);
	position: relative;
	z-index: 1;
    transition: 0.2s;
}

.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.2s;
	-o-transition: all 0.2s;
	-moz-transition: all 0.2s;
	transition: all 0.2s;
}

.loginBtn:hover {
	color: #FFFFFF !important;
    background-color: transparent;
    border-color: 1px solid #3B7547;
    transition: 0.2s;
}

.loginBtn:hover:before {
	opacity: 0;
}

.errorMsgContainer {
    color: #FFFFFF;
    font-size: 14px;
    margin-bottom: 30px;

	display: flex;
	justify-content: flex-start;
	align-items: center;
}

.errorMsgContainer i {
	color: #FFC107;
	margin-right: 6px;
}

/* 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 */



/* Change the white to any color */
input:-webkit-autofill,
input:-webkit-autofill:hover, 
input:-webkit-autofill:focus, 
input:-webkit-autofill:active {
	box-shadow: 0 0 0 30px #224429 inset !important;
    -webkit-box-shadow: 0 0 0 30px #224429 inset !important;
	-webkit-text-fill-color: #FFFFFF !important;
}