@font-face {
	font-family: roboto-light;
	src: url('../fonts/roboto-light/roboto-light.eot');
	src: url('../fonts/roboto-light/roboto-light.woff') format('woff');
	src: local(Roboto-Light), url(../fonts/roboto-light/roboto-light.ttf);
	font-style: normal;
	font-weight: 400;
}

html, body {
	font-family: roboto-light, arial;
	font-size: 16px;
	margin: 0px;
	padding: 0px;

}

body {
    color: #FFFFFF;
	-webkit-text-size-adjust: 100%;
}

input, button {
	font-family: roboto-light, arial;
	font-size: 16px;
	color: #FFFFFF;
}


#market_link {
	display: none;
}

button {
	text-align: center;

	border-radius: 4px;
	padding: 18px 0;
	outline: none;
	border: none;
	cursor: pointer;

	width: 300px;
	box-sizing: border-box;

    transition: background-color 0.5s linear, color 0.5s linear;

	-moz-appearance: none;
	-webkit-appearance: none;
}

.container {
    position: absolute;
    inset: 0;

    display: flex;
    justify-content: center;
    align-items: center;

	min-width: 315px;
	min-height: 380px;

	background-repeat: no-repeat;
	background-size: cover;
	background-position: bottom;
}

.container input {
    background: transparent;

    box-sizing: border-box;
	border-radius: 4px;
	padding: 7px 10px;
	vertical-align: middle;

	text-align: left;
	color: #fff;
	width: 300px;
	height: 54px;
	outline: none;
}

.container input:-webkit-autofill {
    -webkit-text-fill-color: #A7A7A7 !important; /* цвет текста */
    color: #A7A7A7 !important; /* цвет текста */
    caret-color: #fff !important;
	outline: none;
}

.login_form {
	position: relative;
	border-radius: 4px;
	overflow: hidden;

	width: 355px;
	display: inline-block;
	vertical-align: middle;
}

.login_form form {
	padding-top: 30px;
	text-align: center;
}

.login_form form div {
	transition-timing-function: linear;
	transition-duration: 0.3s;
    margin: 0px 20px;
	margin-bottom: 20px;
}

.error_span {
    display: block;
    font-size: 14px;
    color: red;
    margin-bottom: 5px;
}

.login_header {
	box-sizing: border-box;
	height: 60px;
	padding-left: 28px;

    display: flex;
    align-items: center;
}

.login_logo {
    flex: 1;
    text-decoration: none;
    color: inherit;
}

.login_logo img {
    height: 20px;
}

.login_logo i {
    font-size: 40px;
    cursor: pointer;
}

.forgot_pass {
	text-align: left;

	padding-right: 5px;
	padding-left: 5px;

    display: flex;
	justify-content: space-between;
	align-items: center;
}

.forgot_pass span {
	cursor: pointer;
	transition: background-color 0.3s linear, color 0.3s linear;
}

.remember_pass {
	text-align: left;

	padding-right: 7px;
	padding-left: 7px;
	margin-bottom: 10px;

    display: flex;
	justify-content: space-between;
	align-items: center;
}

.remember_pass span {
	cursor: pointer;
	transition: background-color 0.3s linear, color 0.3s linear;
}

.remember_pass span:hover {
	color: #FFFFFF;
}

.license_agree {
    display: block;
    text-align: center;
    font-size: 14px;
    margin: 15px 10px 0px 10px;
}

.license_agree font {
    cursor: pointer;
}

.license_agree font:hover {
    text-decoration: underline;
}

.license_agree a,.license_agree a:visited,.license_agree a:active,.license_agree a:focus {
    cursor: pointer;
    text-decoration: none;
}

.license_agree a:hover {
    text-decoration: underline;
}

.license_cont {

    position: absolute;
    vertical-align: middle;
    width: 355px;
    min-height: 328px;
    background-color: #FFFFFF;
    z-index: 20;
    overflow-y: auto;
    box-shadow: 0px 0px 7px 2px rgba(0, 0, 0, 0.5);

    font-size: 18px;

    display: flex;
    flex-direction: column;
}

.tab_header {
    position: relative;

    display: flex;
    color: #FFFFFF;

    height: 60px;
    line-height: 60px;
}

.back_but {
    margin-left: 5px;

    width: 60px;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;

	overflow: hidden;
	cursor: pointer;
}

.tab_header_text {
    flex: 1;
    height: 100%;

    display: flex;
    justify-content: space-between;
    align-items: center;
    overflow: hidden;

    color: #FFFFFF;
}

.license_content {
    max-height: calc(100% - 60px);
    overflow-x: hidden;
    overflow-y: auto;

    padding: 20px;
    text-align: justify;
}

.license_content p {
    font-size: 14px;
    line-height: 20px;
    text-indent: 20px;
}

.license_content {
    color: #202020;
}

@media (max-width: 600px){

	#market_link.view {
        display: flex;
        justify-content: center;
        gap: 10px;
        padding-bottom: 10px;
	}

    .login_form .view a {
        margin: 0px 10px;
    }

    .login_form .view img {
        width: 135px;
    }
}