body,
html {
	background: #222;
	overflow: hidden;
	margin: 0;
	padding: 0;
	height: 100%;
	min-height: 100%;
}

body {
	overflow: hidden;
	font-family: 'Roboto', sans-serif;
	font-style: normal;
	font-weight: 400;
	user-select: none;
	min-width: 320px;
	display: flex;
	justify-content: center;
  align-items: center;
}

body,
h1,
h2,
h3,
h4,
h5,
h6,
html,
p {
	padding: 0;
	margin: 0;
}

/* Custom classes begin */
.fade {
	opacity: 0;
}

.fade-in {
	opacity: 1;
}

.hide {
	display: none;
}

.g-btn {
	width: 100%;
	display: block;
	color: #fff;
	border-radius: 5px;
	padding: 13px 0 10px 0;
	border: 0;
	height: 40px;
	cursor: pointer;
	outline-color: transparent;
}

.gradient-btn {
	text-transform: uppercase;
	background: linear-gradient(90deg, #2096d9 0, #5c35ee 100%)
}

.error-box {
	text-align: center;
	margin: 5px 0 8px 0;
}

.error-message {
	color: #ff3e3e;
	font-size: 12px;
}

/* Custom classes end */

#container,
#main-background {
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	position: fixed;
	cursor: none;
}

#container {
	z-index: 1;
}

#main-background {
	z-index: 0;
	background-size: cover;
	background-repeat: no-repeat;
	background-image: url("../images/gradient.jpg");
}

/* Centering bg position */
@media screen and (max-width:520px) and (orientation:portrait) {
	#main-background {
		background-position: -224px;
	}
}

.wrapper {
	width: 100%;
	height: 100%;
  min-height: 100%;
}

.main {
	z-index: 1;
	height: 100%;
	min-height: 100%;
	position: relative;
	display: flex;
	align-items: center;
}

.main .main__logo {
	margin-bottom: 6px;
}

.main .main__logo img {
	width: 180px;
}

.main .main__title {
	color: #fff;
	font-size: 36px;
	margin-top: 49px;
	/* text-align: center; */
	line-height: 48px;
}

.main .main__text {
	font-size: 14px;
	line-height: 19px;
	color: #9b99ad;
	display: block;
	margin-top: 9px;
}

@media screen and (min-width: 320px) and (max-width: 768px) {
	.main .content {
		margin: 0 auto;
		display: flex;
		flex-direction: column;
		align-items: center;
	}

	.main .main__title {
		text-align: center;
	}

	.main .main__text {
		text-align: center;
	}
}

@media screen and (min-width: 768px) {
	.main .content {
		margin-left: 18%;
	}
}

input[type=text].input-field-item {
	width: 100%;
	background: rgba(27, 27, 39, .6);
	border: 1px solid #9b99ad;
	box-sizing: border-box;
	padding: 13px 14px;
	color: #fff;
	font-size: 12px;
	outline-color: transparent;
}

[data-anim=ripple] {
	position: relative;
	overflow: hidden;
}

[data-anim=ripple]:before {
	content: '';
	position: absolute;
	display: block;
	background: var(--ripple-background, #fff);
	border-radius: 50%;
	pointer-events: none;
	top: calc(var(--y) * 1px);
	left: calc(var(--x) * 1px);
	width: calc(var(--d) * 1px);
	height: calc(var(--d) * 1px);
	opacity: calc(var(--o, 1) * var(--ripple-opacity, .3));
	transition: calc(var(--t, 0) * var(--ripple-duration, 600ms)) var(--ripple-easing, linear);
	transform: translate(-50%, -50%) scale(var(--s, 1));
	transform-origin: center;
}