@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 {
    display: block;
    height: 20px;
    flex: 1;
    cursor: pointer;
}

.login_logo img {
    display: block;
    max-height: 100%;
    width: auto;
    object-fit: contain;
}

.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;
}



@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;
    }
}