@font-face {
	font-family: 'poppins';
	src: url('../fonts/Poppins-Regular.ttf');
}

@font-face {
	font-family: 'poppins-light';
	src: url('../fonts/Poppins-Light.ttf');
}

/* #region start of auth */
.particles-bg {
	background: url('../images/particles.png') no-repeat center center;
	background-size: cover;
}

.auth {
	padding: 2rem;
	margin: 0 auto;
	background-color: rgba(0, 0, 0, 0.8);
	border-radius: 4px;
}

.auth-background .logo-img {
	position: absolute;
	left: 20px;
	top: 20px;
}

.auth-background .form-control {
	background: #E8F0FE;
	border: none;
	height: 50px;
}

.auth-background .form-control:focus {
	box-shadow: none;
}

.auth-background label {
	color: #67666e;
}

.auth-background h1 {
	color: white;
	font-size: 24px;
}

.auth-background h2 {
	color: #67666e;
	font-size: 24px;
	text-align: center;
	margin-bottom: 60px;

}

.auth-background p {
	color: rgba(255, 255, 255, 0.7);
	font-weight: 200;
	font-size: 14.4px;
	margin: 24px 0;
	font-family: 'poppins-light';
}

.btn-pass {
	background: #1D6AA2;
	color: white;
	height: 50px;
	border-radius: 3px;
}

.submit-btn {
	background: #F9A31A;
	border: none;
	color: white;
	height: 50px;
	border-radius: 3px;
}

.submit-btn:hover,
.submit-btn:active,
.submit-btn:focus {
	outline: none;
	box-shadow: none;
	background: rgb(219, 144, 22);
	color: white;
}

.btn-pass:hover,
.btn-pass:active,
.btn-pass:focus {
	outline: none;
	box-shadow: none;
	background: rgb(25, 92, 139);
}

.btn-pass:hover {
	color: white;
}

.copyright {
	position: absolute;
	bottom: 20px;
	right: 20px;
	font-size: 12px!important;
}

.copyright a {
	color: #F9A31A;
}

.btn-material {
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	display: block;
	color: white;
	cursor: pointer;
}

.btn-material span {
	position: relative;
	display: inline-block;
	top: 50%;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	z-index: 1;
}

.ripple-btn {
	position: relative;
	overflow: hidden;
}

.ripple {
	position: absolute;
	border-radius: 100%;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	background-color: rgba(255, 255, 255, .4);
	pointer-events: none;
	-webkit-animation: scale-in .4s ease-in-out;
	animation: scale-in .4s ease-in-out;
	opacity: 0;
}

@-webkit-keyframes scale-in {
	0% {
		-webkit-transform: translate(-50%, -50%) scale(0);
		transform: translate(-50%, -50%) scale(0);
		opacity: 1;
	}

	20% {
		opacity: 1;
	}

	80% {
		-webkit-transform: translate(-50%, -50%) scale(1.2);
		transform: translate(-50%, -50%) scale(1.2);
	}

	100% {
		opacity: 0;
	}
}

@keyframes scale-in {
	0% {
		-webkit-transform: translate(-50%, -50%) scale(0);
		transform: translate(-50%, -50%) scale(0);
		opacity: 1;
	}

	20% {
		opacity: 1;
	}

	80% {
		-webkit-transform: translate(-50%, -50%) scale(1.2);
		transform: translate(-50%, -50%) scale(1.2);
	}

	100% {
		opacity: 0;
	}
}



/* #endregion end of auth */


@media (max-width: 992px) {
	.auth-background h2 {
		margin-bottom: 30px;
	}
	.add-bg-sm-screen {
		background: url('../images/particles.png') no-repeat center center;
		background-size: cover;
	}
	.bg-white-sm-screen {
		background: white;
		width: 500px!important;
		padding: 40px 20px;
	}
}
@media (max-width: 767px){
	.bg-white-sm-screen {
		width: 400px!important;
	}
	.auth-background h2 {
		font-size: 16px;
		margin-bottom: 20px;
	}
	.form-logo {
		height: 60px!important;
		margin-bottom: 15px!important;
	}
	label {
		font-size: 13px;
	}
	.btn {
		font-size: 12px;
	}
	.input-group-btn.input-group-append {
		width: 110px!important;
	}
	.bg-white-sm-screen {
		padding: 30px 20px;
	}
	.copyright {
		padding-right: 0!important;
		margin-bottom: 10px!important;
		font-size: 11px!important;
	}
}
@media(max-width: 380px){
	.form-logo {
		height: 50px!important;
		margin-bottom: 5px!important;
	}
	.auth-background h2 {
		font-size: 14px;
		margin-bottom: 5px;
	}
	.copyright {
		position: absolute;
		bottom: 10px;
		right: 10px;
		font-size: 12px!important;
		margin: 0!important;
	}
	.submit-btn {
		height: 38px;
	}
	.btn-pass {
		height: 38px;
	}
	.auth-background .form-control {
		background: rgba(247, 247, 249, 0.7);
		border: none;
		height: 38px;
	}
	.btn {
		font-size: 11px;
	}
}
