@font-face {
    font-family: 'Roboto';
    src: local('Roboto'), local('Roboto-Regular'), url('../fonts/Roboto.woff2') format('woff2'), url('../fonts/Roboto.woff') format('woff'), url('../fonts/Roboto.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}
@font-face {
    font-family: 'Roboto';
    src: local('Roboto Medium'), local('Roboto-Medium'), url('../fonts/Robotomedium.woff2') format('woff2'), url('../fonts/Robotomedium.woff') format('woff'), url('../fonts/Robotomedium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
}
@font-face {
    font-family: 'Roboto';
    src: local('Roboto Bold'), local('Roboto-Bold'), url('../fonts/Robotobold.woff2') format('woff2'), url('../fonts/Robotobold.woff') format('woff'), url('../fonts/Robotobold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
}


*{
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}
html{
	height: 100%;
	font-size: 16px;
}
body{
	width: 100%;
	height: 100%;
	font-family: 'Roboto', 'Helvetica', Arial, sans-serif;;
	font-style: normal;
	font-weight: 400;
	color: #241f33;
  	-webkit-font-smoothing: subpixel-antialiased !important;
	-webkit-backface-visibility: hidden;
	-moz-backface-visibility:    hidden;
	-ms-backface-visibility:     hidden;
	min-width: 320px;
}
.lighthidden{
	display:none;
}
.backgd{
	height: 100%;
	width: 100%;
	background: #241f33; /* Old browsers */ 
	background: -webkit-linear-gradient(top, #191e30 0%,#241f33 50%,#241f33 100%); 
	background: -webkit-gradient(linear, left top, left bottom, from(#191e30),color-stop(50%, #241f33),to(#241f33)); 
	background: -o-linear-gradient(top, #191e30 0%,#241f33 50%,#241f33 100%); 
	background: linear-gradient(to bottom, #191e30 0%,#241f33 50%,#241f33 100%); 
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#191e30', endColorstr='#241f33',GradientType=0 ); 
	-webkit-box-shadow: inset 0px 0px 120px 0px rgba(0,0,0,0.4);
	box-shadow: inset 0px 0px 120px 0px rgba(0,0,0,0.4);
	position: fixed;
	top: 0;
	left: 0;
	z-index: 0;

}
.backgd:before{
    content: "";
    background: url(../img/back-light.png) no-repeat top left;
    display: block;
    position: absolute;    
    top: 0;
    left: 0;
    width: 400px;
    height: 535px;
    background-size: cover;
    z-index: 1;
    opacity: 0.5;
}
main{
	max-width: 1040px;
	width: 100%;
	margin: 0 auto;
	padding: 20px;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
}
img{
	width: 100%;
    max-width: 100%;
}
a{
	color: #3666f0;
}
a:hover{
	text-decoration: none;
}
a:active,
a:focus{
	color: #1d3783;
}
a:visited{
	color: #6b36f0;
}
a.btn:visited{
	color: #fff;
}
input{
	outline: none;
}
input, textarea, label{
	font-family: 'Roboto', 'Helvetica', Arial, sans-serif;;
	font-size: 14px;
	font-weight: 400;
	color: #191e30;
}
dd{
	margin-bottom: 5px;
}

.wrap-form{
	margin: 0 auto;
	max-width: 440px;
	width: 100%;
	z-index: 999;
}
.logo{
	max-width: 100px;
	width: 100%;
	margin: 0 auto;
	padding: 40px 0 30px;
}

.auth-form{
	background: #fff;
	width: 100%;
	-webkit-box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.1);
	box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.1);
	font-size: 0.875rem;
}
.auth-form form{
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
}
.auth-form form .wrap-input input{
    border-radius: 0;
    display: block;
    width: 100%;
    height: 45px;
    padding: 6px 12px;
    font-size: 14px;
    background-color: #fff;
    border-radius: 0;
    background: #e5e5e5;
    border: none;
    -webkit-transition-duration: .25s;
	-o-transition-duration: .25s;
	transition-duration: .25s;
}
.auth-form form .wrap-input input:focus{
	-webkit-box-shadow: inset 0px 0px 5px 0px rgba(0,0,0,0.1);
	box-shadow: inset 0px 0px 5px 0px rgba(0,0,0,0.1);

}
.auth-form form .wrap-input label{
	font-size: 0.75rem;
	font-weight: 500;
	text-transform: uppercase;
	padding-bottom: 3px;
	letter-spacing: 0.04rem;
}
.auth-form .wrap-input{
	padding: 6px 0 14px;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	-ms-flex-direction: column;
	flex-direction: column;
	width: 100%;
}


.wrap-check {
	position: relative;
	font-size: 0.875rem;
}
.wrap-check .check__label {
    width: 16px;
    height: 16px;
    cursor: pointer;
    position: absolute;
    top: 0;
    left: 0;
    background: #e5e5e5;
}
.wrap-check .check__label:after {
	content: '';
	width: 9px;
	height: 5px;
	position: absolute;
	top: 3px;
	left: 3px;
	border: 2px solid #333;
	border-top: none;
	border-right: none;
	background: transparent;
	opacity: 0;
	-webkit-transform: rotate(-45deg);
	-ms-transform: rotate(-45deg);
	transform: rotate(-45deg);
}
.wrap-check :hover::after {
	opacity: 0.5;
}
.wrap-check input[type=checkbox] {
	visibility: hidden;
}
.wrap-check input[type=checkbox]:checked + .check__label:after {
	opacity: 1;
}

.btn{
	color: #fff;
	border: none;
	text-transform: uppercase;
	font-weight: 400;
    -webkit-transition-duration: .25s;
	-o-transition-duration: .25s;
	transition-duration: .25s;
}
.btn:hover{
	-webkit-box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.3);
	box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.3);
	cursor: pointer;
}
.btn:active{
	-webkit-box-shadow: inset 0px 0px 5px 0px rgba(0,0,0,0.1);
	box-shadow: inset 0px 0px 5px 0px rgba(0,0,0,0.1);
}
.btn--primary{
	background: #A9200F;
}
.btn--primary:focus{
	-webkit-box-shadow: 0px 0px 5px 0px rgba(240,82,54,1);
	box-shadow: 0px 0px 5px 0px rgba(240,82,54,1);
}
.auth-form .btn{
	width: 100%;
	margin: 40px 0 10px;
	height: 45px;
	font-size: 1.125rem;
}

.tabs{
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	width: 100%;
}

.tabs > li{
		-webkit-transition-duration: .25s;
		-o-transition-duration: .25s;
		transition-duration: .25s;
		list-style: none;
		text-align: center;
		padding: 20px;
		position: relative;
		overflow: hidden;
		cursor: pointer;
		font-weight: 500;
		width: 50%;
		border-bottom: 2px solid rgb(255, 255, 255);
		font-size: 1.125rem;
			background: rgba(255,255,255,1);
			background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(255,255,255,1)), color-stop(100%, rgba(0,0,0,0.05)));
			background: -webkit-linear-gradient(top, rgba(255,255,255,1) 0%, rgba(0,0,0,0.05) 100%);
			background: -o-linear-gradient(top, rgba(255,255,255,1) 0%, rgba(0,0,0,0.05) 100%);
			background: -webkit-gradient(linear, left top, left bottom, from(rgba(255,255,255,1)), to(rgba(0,0,0,0.05)));
			background: linear-gradient(to bottom, rgba(255,255,255,1) 0%, rgba(0,0,0,0.05) 100%);
			filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#000000', GradientType=0 );
}
		.tabs > li:before{
			z-index: -1;
			position: absolute;
			content: "";
			width: 100%;
			top: 0;
			left: 0;
			background-color: rgba(255, 255, 255, .3);
			-webkit-transform: translateY(100%);
			-ms-transform: translateY(100%);
			transform: translateY(100%);
			-webkit-transition-duration: .25s;
			-o-transition-duration: .25s;
			transition-duration: .25s;
}
		.tabs > li:hover:before{
				-webkit-transform: translateY(70%);
				-ms-transform: translateY(70%);
				transform: translateY(70%);
			}
		
		.tabs > li.active{
			color: #A9200F;
			background: #fff;
		}
			
			.tabs > li.active:before{
				-webkit-transition-duration: .5s;
				-o-transition-duration: .5s;
				transition-duration: .5s;
				background-color: white;
				-webkit-transform: translateY(0);
				-ms-transform: translateY(0);
				transform: translateY(0);
			}

.tab__content{
	background-color: #fff;
	position: relative;
	width: 100%;
	border-radius: 5px;
}
	
	.tab__content > li{
		width: 100%;
		position: absolute;
		top: 0;
		left: 0;
		
		display: none;
		list-style: none;
}	
		.tab__content > li .content__wrapper{
			width: 100%;
			padding: 40px 30px;
			background-color: #fff;
		}

	

@media screen and (max-width: 425px){
	main{
		padding: 0;
	}
	.logo{
		width: 80px;
	}
}
