@import url(../fonts/stylesheet.css);

/* global box-sizing */
*,
*:after,
*:before {
	-moz-box-sizing:border-box;
	box-sizing:border-box;
	-webkit-font-smoothing:antialiased;
	font-smoothing:antialiased;
	text-rendering:optimizeLegibility;
}
/* html element 62.5% font-size for REM use */
html {
	font-size:62.5%;
}
body {
	font:400 14px/1.15 'HelveticaNeueCyr', sans-serif;
	color:#fff;
	background-color: #070A0F;
}
/* clear */
.clear:before,
.clear:after {
    content:' ';
    display:table;
}

.clear:after {
    clear:both;
}
.clear {
    *zoom:1;
}
img {
	max-width:100%;
	vertical-align:bottom;
}
a {
	color:inherit;
	text-decoration:none;
}
a:hover {
	color:inherit;
}
a:focus {
	outline:0;
}
a:hover,
a:active {
	outline:0;
}
input:focus {
	outline:0;
	border:1px solid #04A4CC;
}

/*------------------------------------*\
    STRUCTURE
\*------------------------------------*/

.container{
	padding: 0 16px;
	max-width: 100%;
	width: 1232px;
	margin-right: auto;
	margin-left: auto;
}

/* header */
.header {
	padding: 32px;
}
.header .container{
	width: 100%;
	padding: 0;
	margin: 0;
}
/* logo */
.logo {

}
.logo-img {

}
/* nav */
.nav {

}
/* sidebar */
.sidebar {

}
/* footer */
.footer {
	padding: 32px;
}
.footer .container{
	width: 100%;
	padding: 0;
	margin: 0;
}
.footer-flex{
	display: flex;
	align-items: center;
	gap:100px;
}
.footer-menu{
	list-style-type: none;
	margin: 0;
	padding: 0;
	display: flex;
	gap:32px;
}
.footer-menu a{
	font-size: 14px;
	color: #A6A9B0;
}
.footer-menu a:hover{
	color: #fff;
}

.loader-wrapper{
	display: none;
}

.page-login{
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	min-height: 100vh;
	/*gap: 32px;*/
	background-image: url(../img/auth-bg.png);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: top left;
	overflow: hidden;
}
.page-login:before{
	content: '';
	pointer-events: none;
	display: block;
	position: absolute;
	width: 1483px;
	height: 485px;
	border-radius: 1483px;
	background: radial-gradient(50% 50% at 50% 50%, #B3C9E5 0%, #070A0F 50%, #5B81B0 100%);
	filter: blur(150px);
	will-change: filter;
	bottom: 0;left: 0;
}
.page-login .logo img,
.page-login .logo{
	width: auto;
	max-width: 100%
}
.page-login main{
	position: relative;
	padding: 32px 0;
	min-height: calc(100vh - 82px)
}
.header-flex{
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.lang-sw{
	position: relative;
	z-index: 1;
}
.lang-sw a{
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 8px;
	border: 1px solid rgba(191, 197, 195, 0.10);
	width: 48px;
	height: 48px;
	font-size: 0;
	transition: all .3s ease;
}
.lang-sw a:hover{
	border-color: #fff;
}
.lang-sw a img{
	width: 24px;
	height: 24px;
	border-radius: 12px;
	object-fit: cover;
}
.lang-sw .dropdown{
	display: none;
	position: absolute;
	top: 100%;
	left: 0;
	margin-top: 8px;
}
.lang-sw .dropdown ul{
	list-style-type: none;
	margin: 0;
	padding: 0;
}

.hand-decore{
	position: absolute;
	bottom: 0;
	right: 0;
	max-height: 100vh
}

.form-box{
	padding: 40px;
	width: 382px;
	border-radius: 24px;
	background: rgba(3, 6, 9, 0.30);
	-webkit-backdrop-filter: blur(40px);
	backdrop-filter: blur(40px);
}
.form-box .title{
	text-align: center;
	font-size: 32px;
	font-style: normal;
	font-weight: 400;
	line-height: 120%; /* 38.4px */
	letter-spacing: -0.64px;
	margin: 0 0 24px;
}
.form-box p{
	margin: 0;
}
.form-box .form-group{
	margin: 0 0 16px;
}
.form-box .form-group input{
	display: block;
	width: 100%;
	border-radius: 8px;
	border: 1px solid rgba(166, 169, 176, 0.10);
	height: 48px;
	text-align: center;
	font-size: 14px;
	color: #fff;
	background: none;
}
.form-box .form-group input:focus{
	border-color: #fff;
}
.form-box .form-group.has-error input{
	border-color: #FF8D28;
}
.form-box .btn{
	width: 100%;
}
.error-message{
	color: #FF8D28;
	font-size: 12px;
}
.btn{
	display: inline-flex;
	justify-content: center;
	align-items: center;
	height: 48px;
	border-radius: 8px;
	font-size: 14px;
	border: none;
	padding: 0 16px;
}
.btn-blue{
	color: #fff;
	background: radial-gradient(114.65% 117.43% at 99.95% 91.33%, rgba(255, 255, 255, 0.00) 0%, rgba(255, 255, 255, 0.20) 100%), linear-gradient(126deg, #55A1FF -10.64%, #107CFF 85.13%);
}

.lost-password{
	text-align: center;
	margin: 16px 0 32px;
	color: #A6A9B0;
	font-size: 12px;
}
.lost-password a{
	text-decoration: underline;
}
.lost-password a:hover{
	color: #fff;
}
.form-box .text-center{
	text-align: center;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	gap:2px;
	color: #A6A9B0;
	font-size: 12px;
}
.form-box .text-center a{
	font-size: 16px;
	color: #fff;
}	
.form-box .text-center a:hover{
	text-decoration: underline;
}

.login_th_block{
	margin-top: 32px;
	text-align: center;
	color: #A6A9B0;
	font-size: 12px;
	margin-bottom: 24px;
}
.login_th_block ul{
	list-style-type: none;
	padding: 0;
	margin: 0;
	display: flex;
	justify-content: center;
	gap:8px;
}
.th_text{
	display: block;
	text-align: center;
	margin-bottom: 16px;
}
.login_th_block ul li a{
	display: flex;
	justify-content: center;
	align-items: center;
	width: 48px;
	height: 48px;
	border-radius: 24px;
	border: 1px solid rgba(166, 169, 176, 0.10);
	background: rgba(166, 169, 176, 0.10);
}
.follow_block{
	margin-bottom: 16px;
	position: relative;
	padding-left: 20px;
	background-image: url(../img/check.svg);
	background-repeat: no-repeat;
	background-position: 0 0;
	color: #BAC4D0;
	font-size: 12px;
}
.follow_block a{
	text-decoration: underline;
}
.modal_form-sign_in .follow_block{
	background: none;
	padding: 0;
}
@media screen and (max-width: 1199px) {
	.hand-decore{
		position: static;
		width: 150px;
		display: block;
		margin-right: auto;
		margin-left: auto;
	}
	.form-box{
		margin-right: auto;
		margin-left: auto;
	}
	.footer-flex{
		align-items: flex-end;
		justify-content: space-between;
	}
	.footer-menu{
		flex-direction: column;
		gap:16px;
	}
}
@media screen and (max-width: 767px) {
	.footer,
	.header{
		padding: 16px;
	}
	.form-box{
		max-width: 100%;
		padding-left: 16px;
		padding-right: 16px;
	}
	.footer-flex{
		flex-direction: column;
		align-items: center;
		gap:32px;
	}
}
