@charset "utf-8";
/* CSS Document */

body {
	margin: 0px;
}

.back {
	position: fixed;
	top: 0px;
	bottom: 0px;
	left: 0px;
	right: 0px;
	background: url(../images/left-bg.png) no-repeat, url(../images/right-bg.png) no-repeat, #ffffff;
	background-position: left, right;
	
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	align-items: center;
}

h1 {
	margin: 0px;
}

.authorize, .info {
	width: 280px;
	margin: 30px 0px 0px 0px;
	display: flex;
	justify-content: space-around;
	flex-direction: column;
	text-align: center;
	align-items: center;
}

.authorize input[type=text], .authorize input[type=password], .authorize input[type=tel] {
	width: 100%;
	background-color: transparent;
	border: none;
	outline: 0px;
	font-size: 16px;
	color: #83858c;
	padding: 10px 0px;
	margin: 5px 0px;
	border-bottom: 2px solid #34C38D;
}

.authorize a, .info a, .authorize input[type=text]:focus, .authorize input[type=password]:focus, .authorize input[type=tel]:focus {
	color: #34C38D;
}

.authorize span, .info p {
	color: #83858C;
}

.authorize-form {
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: space-between;
}

.auth-btn {
	width: 100%;
	border-radius: 8px;
	padding: 12px 25px;
	margin: 5px 0 0 0;
}

.info {
	height: auto;
	margin: 0 0 30px 0;
	justify-content: center;
}

.info p {
	font-size: 14px;
}

.modals {
	top: 0;
	left: 0;
}

/*MEDIA*/

@media screen and (min-width: 1366px) {
	.authorize {
		height: 610px;
	}
}

/*MEDIA 1024*/

@media screen and (max-width: 1024px)  {
	.back {
		background-size: 30%;
		justify-content: center;
	}
	.authorize, .info {
		margin: 30px 0;
	}
}

/*MEDIA TABLET*/

/*MEDIA MOBILE*/

@media screen and (max-width: 480px) {
	.back {
		background: #ffffff;
	}
	.authorize input[type=text], .authorize input[type=password], .authorize input[type=tel], .authorize span, .info p, .authorize a, .auth-btn {
		font-size: 12px;
	}
}

/*---------LANG CHOOSER--------------*/
.lang-chooser-container {
	position: absolute;
	top: 0;
	right: 111px;
	z-index: 50;
}
.lang-chooser {
	width: 61px;
	height: 61px;
	background-color: rgba(0, 0, 0, 0.2);

	position: relative;

	display: flex;
	flex-direction: row;
	align-items: flex-end;
	justify-content: flex-end;
}
.lang-chooser .current-lang {
	width: 61px;
	height: 61px;

	display: flex;
	align-items: center;
	justify-content: center;

	cursor: pointer;
}
.lang-chooser img {
	width: 30px;
}
.lang-chooser-active {
	background-color: rgba(0, 0, 0, 0.5);
}
.lang-list {
	position: relative;
	width: 61px;
	height: auto;
	max-height: 150px;
	overflow: auto;
	background-color: rgba(0, 0, 0, 0.2);
}
.lang-list::-webkit-scrollbar {
	width: 3px;
	background-color: transparent;
}
.lang-list::-webkit-scrollbar-thumb {
	background-color: #ffffff;
	border-radius: 8px;
}
.lang-list::-webkit-scrollbar-track {
	background-color: transparent;
}
.lang-list .lang-container {
	width: 100%;
	height: 50px;

	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
}
.lang-list .lang-container:hover {
	background-color: rgba(0, 0, 0, 0.3);
}
.lang-list .lang-container img {
	width: 30px;
}
.display-none {
	display: none;
}
@media (min-width: 0px) and (max-width: 568px) {
	.lang-chooser, .lang-list {
		width: 51px;
	}
}
/*LANG CHOOSER OVER*/