@import url('https://fonts.googleapis.com/css2?family=Nunito+Sans:opsz,wght@6..12,200..1000&display=swap');

:root {
	--default-color: #000;
	--green-color: #00B050;
	--red-color: #e8757f;
	--gradient: linear-gradient(to bottom,rgba(255,255,255,.2) 0,rgba(255,255,255,.01) 100%) #50a909;
	--purple-color: #7030A0;
	--sidebar-color: #29192F;
	--background-color: #F2F2F2;
	--padding-main: 80px;
}

/* Scroll Bar */
::-webkit-scrollbar {
	width: 8px;
	height: 8px;
}
::-webkit-scrollbar-track-piece {
	background-color: transparent;
	-webkit-border-radius: 8px;
}
::-webkit-scrollbar-thumb:vertical {
	height: 8px;
	background-color: var(--green-color);
	-webkit-border-radius: 5px;
}
::-webkit-scrollbar-thumb:horizontal {
	width: 8px;
	background-color: var(--green-color);
	-webkit-border-radius: 5px;
}
@keyframes grow {
	0% {
		transform: scale(1);
	}
	100% {
		transform: scale(2.5);
	}
}
@keyframes grow-arrow {
	0% {
		transform: scale(1);
	}
	100% {
		transform: scale(1.3);
	}
}
@-webkit-keyframes jittery {
	5%, 50% {
		-webkit-transform: scale(1);
		transform: scale(1)
	}
	10% {
		-webkit-transform: scale(.95);
		transform: scale(.95)
	}
	15% {
		-webkit-transform: scale(1.05);
		transform: scale(1.05)
	}
	20% {
		-webkit-transform: scale(1.05) rotate(-5deg);
		transform: scale(1.05) rotate(-5deg)
	}
	25% {
		-webkit-transform: scale(1.05) rotate(5deg);
		transform: scale(1.05) rotate(5deg)
	}
	30% {
		-webkit-transform: scale(1.05) rotate(-3deg);
		transform: scale(1.05) rotate(-3deg)
	}
	35% {
		-webkit-transform: scale(1.05) rotate(2deg);
		transform: scale(1.05) rotate(2deg)
	}
	40% {
		-webkit-transform: scale(1.05) rotate(0);
		transform: scale(1.05) rotate(0)
	}
}
@keyframes jittery {
	5%, 50% {
		-webkit-transform: scale(1);
		transform: scale(1)
	}
	10% {
		-webkit-transform: scale(.95);
		transform: scale(.95)
	}
	15% {
		-webkit-transform: scale(1.05);
		transform: scale(1.05)
	}
	20% {
		-webkit-transform: scale(1.05) rotate(-5deg);
		transform: scale(1.05) rotate(-5deg)
	}
	25% {
		-webkit-transform: scale(1.05) rotate(5deg);
		transform: scale(1.05) rotate(5deg)
	}
	30% {
		-webkit-transform: scale(1.05) rotate(-3deg);
		transform: scale(1.05) rotate(-3deg)
	}
	35% {
		-webkit-transform: scale(1.05) rotate(2deg);
		transform: scale(1.05) rotate(2deg)
	}
	40% {
		-webkit-transform: scale(1.05) rotate(0);
		transform: scale(1.05) rotate(0)
	}
}
@-webkit-keyframes heartbeat {
	50% {
		-webkit-transform: scale(1.05);
		transform: scale(1.05)
	}
}
@keyframes heartbeat {
	50% {
		-webkit-transform: scale(1.05);
		transform: scale(1.05)
	}
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}
*:before, *:after {
	box-sizing: border-box;
}
html {
	width: 100%;
	overflow-x: hidden;
	height: 100%;
}
body {
	/*background: url(../img/auth-bg.png) no-repeat center / cover;*/
	background: linear-gradient(180.00deg, rgb(220, 195, 195),rgb(255, 225, 190));
	margin: 0;
	padding: 0;
	height: 100%;
	font: 16px/1.3 'Nunito Sans', sans-serif;
	color: var(--default-color);
	overflow: hidden;
}
ul, li {
	list-style: none;
	margin: 0;
	padding: 0;
}
a {
	color: var(--default-color);
	text-decoration: none;
}
a:hover {
	text-decoration: underline;
}
input, button, select, textarea {
	margin: 0;
	padding: 0;
	outline: none;
	border: none;
	font-family: 'Nunito Sans', sans-serif;
}
button, a {
	cursor: pointer;
	transition: 300ms;
}
table {
	border-collapse: collapse;
	width: 100%;
}
img {
	max-width: 100%;
}
.maxwidth {
	margin: 0 auto;
	min-width: 375px;
	height: 100%;
}
.fixed {
	width: 1440px;
	margin: 0 auto;
	padding: 0 20px;
	max-width: 100%;
}
.fixed--wide {
	padding: 0;
	width: auto;
}
.flex {
	display: flex;
	flex-wrap: wrap;
}
.grid {
	display: grid;
}
.section-title {
	color: var(--default-color);
	font-size: 50px;
	line-height: 1.1;
	font-weight: bold;
}
.section-title * {
	margin: 0;
	padding: 0;
	font-size: inherit;
	font-weight: inherit;
}
.section-title--margin-60 {
	margin-bottom: 60px;
}
.section-title--margin-50 {
	margin-bottom: 50px;
}
.section-title--margin-40 {
	margin-bottom: 40px;
}
.section-title--margin-30 {
	margin-bottom: 30px;
}
.section-title--70 {
	font-size: 70px;
	line-height: 1;
}
.section-title--50 {
	font-size: 50px;
}
.section-title--40 {
	font-size: 40px;
}
.section-title--30 {
	font-size: 30px;
}
.section-title--22 {
	font-size: 22px;
}
.section-title--20 {
	font-size: 20px;
}
.section-title--white {
	color: #fff;
}
.btn {
	background: var(--green-color);
	align-items: center;
	justify-content: center;
	padding: 9px 22px;
	color: #fff;
	transition: 300ms;
	text-align: center;
	text-decoration: none!important;
	font-size: 17px;
	line-height: 1.3;
	max-width: 100%;
	border-radius: 15px;
	min-width: 175px;
	flex-wrap: nowrap;
	font-weight: bold;
}
.btn--bold {
	font-weight: bold;
}
.btn--middle {
	padding: 14px 26px;
}
.btn--big {
	padding: 19px 28px;
}
.btn--purple {
	background: var(--purple-color);
}
.btn--red {
	background: red;
}
.btn--gradient {
	background: var(--gradient);
}
.btn--gray {
	background: #aaa;
	color: #000;
}
.btn:hover {
	background: #000;
	color: #fff;
}
.btn--gradient:hover {
	background: green;
}
.image img {
	display: block;
}
.image-responsive {
	height: 0;
	position: relative;
	padding-bottom: 52.6%;
}
.image-responsive--vertical {
	padding-bottom: 130%;
}
.image-responsive__image {
	width: 100%;
	height: 100%;
	display: block;
	position: absolute;
	top: 0;
	left: 0;
}
.overflow {
	overflow: hidden;
}
.balert {
	background: #fff;
	box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
	color: #000;
	max-width: 300px;
	padding: 20px;
	position: fixed;
	left: 20px;
	bottom: 20px;
	opacity: 0;
	z-index: -1;
	transition: 1000ms;
	border-radius: 10px;
	font-weight: bold;
	font-weight: 400;
	font-size: 14px;
}
.balert.active {
	opacity: 1;
	z-index: 999999;
}

.xalert {
	background: var(--green-color);
	border-color: #badbcc;
	color: #0f5132;
	padding: 0.7rem 1rem;
	position: fixed;
	top: -100%;
	left: 50%;
	transform: translatex(-50%);
	transition: 400ms;
	z-index: 999999;
	font-weight: 500;
	border-radius: 10px;
	font-weight: bold;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.12);
}
.xalert.active {
	transform: translatex(-50%);
	top: 50px;
}
.xalert-success {
	color: #fff;
}
.xalert-warning {
	color: #664d03;
	background: #fff3cd;
}
.xalert-danger {
	color: #842029;
	background: #e8757f;
}
.nomargin {
	margin: 0!important;
}
.nopadding {
	padding: 0!importnat;
}
.logo {
	position: relative;
	transition: 300ms;
}
.logo__image {
	display: block;
	max-width: 100%;
}
.logo__link {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 2;
}
.auth {
	width: 1300px;
	max-width: 100%;
	height: 100%;
	flex-direction: column;
	margin: 0 auto;
	padding: 0 22px;
}
.auth__head,
.auth__footer {
	flex-shrink: 0;
}
.auth__in {
	flex: 1;
	overflow: auto;
	justify-content: center;
	align-items: center;
}
.auth__inner {
	width: 100%;
	text-align: center;
}
.auth__head {
	padding: 34px 0;
	justify-content: space-between;
	align-items: center;
}
.auth__action {
	min-width: 1px;
}
.auth__start-text {
	font-size: 24px;
	line-height: 2;
	font-weight: 300;
	margin-bottom: 140px;
}
.auth__labels {
	max-width: 772px;
	margin: 0 auto;
}
.auth__input {
	background: none;
	width: 100%;
	display: block;
	height: 71px;
	font-size: 45px;
	font-weight: 300;
	border: none;
	border-bottom: 1px solid #000;
	text-align: center;
	transition: 300ms;
}
.auth__input::placeholder {
	transition: 300ms;
}
.auth__input:focus::placeholder {
	opacity: 0;
}
.auth__input:focus {
	border-color: var(--green-color);
}
.auth__label-note {
	color: #787777;
	font-size: 14px;
	font-weight: 300;
	margin-top: 12px;
}
.auth__do {
	margin-top: 70px;
	justify-content: center;
}
.auth__note {
	font-size: 12px;
	line-height: 1.5;
	color: #8E8E8E;
	margin-top: 60px;
}
.auth__note a {
	color: #004CFF;
	text-decoration: none;
}
.auth__note a:hover {
	text-decoration: underline;
}
.auth__code-top {
	font-size: 36px;
	font-weight: 300;
	margin-bottom: 31px;
}
.auth__code-text {
	font-size: 16px;
	line-height: 1.5;
	font-weight: 300;
	color: #696969;
}
.auth__code-text > p:not(:last-child) {
	margin-bottom: 30px;
}
.auth__btn {
	border-radius: 50px;
	min-width: 322px;
}
.auth__code-inputs {
	justify-content: center;
	gap: 38px;
}
.auth__code-input {
	width: 91px;
}
.auth__step:not(.active) {
	display: none;
}
.auth__footer {
	padding: 25px 0;
}
.auth__policy {
	text-align: center;
	font-size: 12px;
	font-weight: 500;
	color: #9B9B9B;
}
.auth__head,
.auth__in,
.auth__footer {
	position: relative;
	z-index: 5;
}
.auth__v {
	background: url(../img/auth-v.svg) no-repeat center / cover;
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
}
.auth__cloud {
	background: url(../img/auth-cloud2.svg) no-repeat;
	position: absolute;
	width: 100%;
	height: 209px;
	top: 140px;
	left: 0;
	zoom: 0.8;
}
@media(max-width: 1600px) {
	.auth__v {
		background: url(../img/auth-v.png) no-repeat center bottom / cover;
	}
	.auth__cloud {
		display: none;
	}
}
@media(max-width: 991px) {
	.auth__start-text {
		margin-bottom: 40px;
	}
	.auth__labels {
		max-width: 100%;
	}
	.auth__start-text {
		line-height: 1.5;
	}
}
@media(max-width: 767px) {
	.auth__input {
		font-size: 25px;
	}
}
@media(max-width: 550px) {
	.logo__image {
		width: 180px;
	}
	.auth__code-inputs {
		gap: 12px;
	}
	.auth__code-input {
		width: 71px;
	}
}