	#authform {
		display: none;
		visibility: hidden;
		opacity: 0;
	}

	#authform.show {
		display: block;
		visibility: visible;
		opacity: 1;
	}

	.material-shadow {
		box-shadow: 0 8px 18px rgba(0,0,0,0.18), 0 2px 5px rgba(0,0,0,0.10);
	}

	.text-shadow-black {
		text-shadow: 0px 1px 2px rgba(0,0,0,.45);
	}

	.montserrat {
		font-family: 'Montserrat', sans-serif;
	}

	.poppins {
		font-family: 'Poppins', sans-serif;
	}

	input {
		outline: none;
		border: none;
	}

	label {
		display: block;
		margin: 0;
	}

	input:focus::-webkit-input-placeholder { color:transparent; }
	input:focus:-moz-placeholder { color:transparent; }
	input:focus::-moz-placeholder { color:transparent; }
	input:focus:-ms-input-placeholder { color:transparent; }
	input::-webkit-input-placeholder { color: #999999;}
	input:-moz-placeholder { color: #999999;}
	input::-moz-placeholder { color: #999999;}
	input:-ms-input-placeholder { color: #999999;}

	.be-flex {
		display: -webkit-box;
		display: -webkit-flex;
		display: -moz-box;
		display: -ms-flexbox;
		display: flex;
		flex-wrap: wrap;
		flex-grow: 1;
	}

	.limiter {
		width: 100%;
		margin: 0 auto;
	}

	.container-login {
		width: 100%;
		min-height: 100vh;
		background: #f2f2f2;
	}

	.wrap-login {
		width: 100%;
		background: #fff;
		overflow: hidden;
		align-items: stretch;
		flex-direction: row-reverse;
	}

	.login-form {
		width: 560px;
		min-height: 100vh;
		background-color: #ffffff;
		padding: 24px;
		z-index: 10;
		justify-content: center;
		align-items: center;
		background-image: url('../img/watercolor_bg.jpg');
		background-repeat: no-repeat;
		background-position: center;
	}

	.login-form form {
		flex-grow: 1;
	}

	.wrap-input {
		align-items: flex-end;
		width: 100%;
		height: 80px;
		position: relative;
		border: 1px dashed #a6a6a6;
		border-radius: 10px;
		margin-bottom: 10px;
	}

	.input {
		display: block;
		width: 100%;
		background: transparent;
		font-size: 18px;
		color: #555555;
		line-height: 1.2;
		padding: 0 26px;
	}

	input.input {
		height: 100%;
		-webkit-transition: all 0.2s;
		-o-transition: all 0.2s;
		-moz-transition: all 0.2s;
		transition: all 0.2s;
	}

	.label-input {
		font-size: 18px;
		color: #505050;
		line-height: 1.2;
		display: block;
		position: absolute;
		pointer-events: none;
		width: 100%;
		padding-left: 24px;
		left: 0;
		top: 30px;
		-webkit-transition: all 0.2s;
		-o-transition: all 0.2s;
		-moz-transition: all 0.2s;
		transition: all 0.2s;
	}

	.focus-input {
		position: absolute;
		display: block;
		width: calc(100% + 2px);
		height: calc(100% + 2px);
		top: -1px;
		left: -1px;
		pointer-events: none;
		border: 2px solid #2180a9;
		border-radius: 10px;
		visibility: hidden;
		opacity: 0;
		-webkit-transition: all 0.2s;
		-o-transition: all 0.2s;
		-moz-transition: all 0.2s;
		transition: all 0.2s;
	}

	.input:focus + .focus-input {
		visibility: visible;
		opacity: 1;
		-webkit-transform: scale(1);
		-moz-transform: scale(1);
		-ms-transform: scale(1);
		-o-transform: scale(1);
		transform: scale(1);
		box-shadow: 0 8px 12px rgba(0,0,0,0.10), 0 2px 3px rgba(0,0,0,0.05);

	}

	.eff-focus-selection {
		visibility: visible;
		opacity: 1;
		-webkit-transform: scale(1);
		-moz-transform: scale(1);
		-ms-transform: scale(1);
		-o-transform: scale(1);
		transform: scale(1);
	}

	.input:focus {
		height: 48px;
	}

	.input:focus + .focus-input + .label-input {
		top: 14px;
		font-size: 13px;
		color: #2180a9;
	}

	.has-val {
		height: 48px !important;
	}

	.has-val + .focus-input + .label-input {
		top: 14px;
		font-size: 13px;
	}

	.login-more {
		z-index: 5;
		width: calc(100% - 560px);
		background-repeat: no-repeat;
		background-size: cover;
		background-position: center;
		position: relative;
		z-index: 1;
	}

	.login-more::before {
		content: "";
		display: block;
		position: absolute;
		z-index: -1;
		width: 100%;
		height: 100%;
		top: 0;
		left: 0;
		background-image: url('../../global/img/halftone_white_mini_25p.png');
	}

	.login-more .claim {
		align-self: flex-end;
	}

	@media (max-width: 992px) {
		.login-form {
			width: 50%;
		}
		.login-more {
			width: 50%;
		}
	}

	@media (max-width: 768px) {
		.login-form {
			width: 100%;
		}
		.login-more {
			display: none;
		}
	}

	@media (max-width: 576px) {
		.login-form {
		}
	}

	#particles-js {
		position: absolute;
		top: 0;
		left: 0;
		right: 0;
		bottom: 0;
		overflow: hidden;
	}
