:root {
	--font-family: "Lexend", sans-serif;
}
* {
	margin: 0px; 
	padding: 0px; 
	box-sizing: border-box;
}
body, html {
	height: 100%;
	font-family: var(--font-family);
	font-weight: 300;
	font-size: 16px;
	line-height: 1.5;
}
.container-login100 {
	position: relative;
	width: 100%;  
	min-height: 100vh;
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	padding: 15px;
}
.container-login100::before {
	content: "";
    display: block;
    position: absolute;
    z-index: -1;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(93, 84, 240, 0.5);
    background: -webkit-linear-gradient(left, rgba(15, 102, 160), rgba(0, 0, 0, 0.7));
    background: -o-linear-gradient(left, rgba(15, 102, 160), rgba(0, 0, 0, 0.7));
    background: -moz-linear-gradient(left, rgba(15, 102, 160), rgba(0, 0, 0, 0.7));
    background: linear-gradient(left, rgba(15, 102, 160), rgba(0, 0, 0, 0.7));
    pointer-events: none;
}
#particles-js {
	position: relative;
	z-index: 1;
}
.wrap-login100 {
	width: 390px;
	background: #fff;
	border-radius: 10px;
	overflow: hidden;
	position: relative;
	z-index: 2;
}
.login100-form-title {
	display: block;
    font-family: var(--font-family);
    font-size: 30px;
    color: #4b2354;
    line-height: 1.2;
    text-align: center;
	font-weight: bold;
	margin-bottom: 15px;
}
.login100-form-title-1 {
	font-family: var(--font-family);
	font-weight: 700;
	font-size: 30px;
	color: #fff;
	line-height: 1.2;
	text-align: center;
}
/* .login100-form-title::before {
	content: "";
	display: block;
	position: absolute;
	z-index: -1;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background-color: rgba(54,84,99,0.7);
} */
.subtitle {
	color: wheat;
}
#loginform {
	margin-top: 15px;
}
.login-form {
	padding: 30px 0;
	width: 80%;
	margin: 0 auto;
}
.login-form form p {
	margin-bottom: 1rem;
}
.login-form form label {
	display: inline-block;
	margin-bottom: .5rem;
	color: #111c2d;
	font-weight: 500;
	font-size: 0.9rem;
}
.login-form form input.input {
	display: block;
	width: 100%;
	padding: 8px 16px;
	font-size: 14px;
	font-weight: 500;
	line-height: 1.5;
	background-color: transparent;
	border: 1px solid #aebcc3;
	border-radius: .5rem;
	transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}
.login-form form input.input:focus {
	color: #707a82;
	border-color: #80c2ed;
	outline: 0;
}
.login-form form input.button {
	width: 100%;
	border: none;
	background-color: #0085db;
	color: white;
	padding: 8px;
	border-radius: 50rem;
	cursor: pointer;
	font-size: 16px;
	line-height: 1.5;
}
.login-form form input.button:hover {
	background-color: #0071ba;
}
.login-form .login-msg.error {
	color: #dc3545;
	margin-bottom: 1rem;
}
.login-form .login-msg.successs {
	color: #ffc107;
	margin-bottom: 1rem;
}
@media (max-width: 576px) {
	.login100-form {
		padding: 43px 15px 57px 117px;
	}
}

@media (max-width: 480px) {
	.login100-form {
		padding: 43px 15px 57px 15px;
	}
}
.login-password {
	position: relative;
}
.login-password span {
	position: absolute;
	bottom: 0;
	right: 0;
	cursor: pointer;
	background: #e9ecef;
	height: 39px;
	display: flex;
	align-items: center;
	vertical-align: middle;
	padding: 0 10px;
	border-radius: 0 .5rem .5rem 0;
	border: 1px solid #aebcc3;
	user-select: none;
	-webkit-user-select: none; /* Safari */
}
.login-remember {
	user-select: none;
	-webkit-user-select: none; /* Safari */
}