@font-face { 
	font-family: "ManropeRegular";
	src: url("../FONTS/ManropeRegular.ttf") format("truetype");
	font-style: normal;
	font-weight: 400;
}

body {
	font-family: "ManropeRegular";
}

span {
	font-size: 14px;
}

.auth-page {
	display: flex;
	background: url(https://static-leg.pim.topseller.ru/assets/images/__covers/login.svg);
	background-size: cover;
	overflow: hidden;
	width: 100vw;
	height: 100vh;
	justify-content: center;
	align-items: center;
}
.auth_form {
	width: 500px;
	border-radius: 30px;
	background-color: white;
	padding: 1rem;
}
input {
	border-radius: 20px;
	appearance: none;
	padding: 0.375rem 0.75rem;
	width: 100%;
	line-height: 1.5;
	border: 2px solid #f4f6fa;
	background: #f4f6fa;
	background-clip: padding-box;
	margin-top: 5px;
	color: #6e84a3;
	outline: none;
	transition: 200ms;
}
input::-webkit-inner-spin-button {
	-webkit-appearance: none;
}
.form_logo {
	text-align: center;
	margin-top: 1rem!important;
	margin-bottom: 1rem!important;
	margin-right: 0.5rem!important;
	margin-left: 0.5rem!important;
}

label {
	font-weight: 400;
	font-size: 14px;
	line-height: 17px;
	color: #6e84a3;
	padding-left: 0.5rem;
}

button {
	width: 100%;
	border: none;
	padding: 11px;
	border-radius: 23px;
	background: #48b798;
	color: #fff;
	margin-top: 10px;
	transition: 200ms;
}
button:not(.secondary, .btn-close):hover, button:not(.secondary, .btn-close):focus {
	background: #3f9d83;
}
.form_submit {
	margin-top: 10px;
}
input.is_invalid {
	padding-right: calc(1.5em + 0.75rem);
	background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23dc3545'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e");
	background-repeat: no-repeat;
	background-position: right calc(0.375em + 0.1875rem) center;
	background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}
input.is_valid {
	padding-right: calc(1.5em + 0.75rem);
	background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%23198754' d='M2.3 6.73.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e");
	background-repeat: no-repeat;
	background-position: right calc(0.375em + 0.1875rem) center;
	background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}
input:focus.is_valid {
	box-shadow: 0 0 0 0.25rem rgba(var(--bs-success-rgb),.25);
}
input:focus.is_invalid {
	box-shadow: 0 0 0 0.25rem rgba(var(--bs-danger-rgb),.25);
}

.hidden {
	display: none;
}

.text {
	text-align: center;
	font-size: 0.875rem;
}

.info {
	display: block;
	padding: 0 30px;
	margin: 10px 0 15px;
}

button.secondary {
	background: #f4f6fa;
	color: #334155;
	border: 2px solid #f4f6fa;
	padding: 9px;
}

.flex_buttons {
	display: flex;
	margin-top: 20px;
	justify-content: space-between;
}

.flex_buttons button {
	width: calc(50% - 5px);
}

span.failed{
	color:#ea2b48;
}

.register_button {
	margin-top: 20px;
}

.register_have_account span {
	text-decoration: underline;
	color: #48b798;
}

.register_have_account{
	cursor: pointer;
	width: max-content;
	margin: 10px auto;
}

.seconds_left {
color: #b1b2b3;
opacity: .4;
}

.seconds_left.active {
	text-decoration: underline;
	color: #48b798;
	cursor: pointer;
	opacity: 1;
}

.secondary:hover {
	border: 2px solid #48b798;
	transition: 200ms;
}

.code_resend {
	width: max-content;
	margin: 10px auto;
}

.code_input {
	margin-bottom: 10px;
}

.code_notification {
	margin-left: 10px;
}

input::placeholder {
	color: #6e84a3;
}

.account_ms_login {
	margin-bottom: 20px;
}

.auth_failed.active {
	width: 450px;
	margin: 15px auto;
	height: 55px;
	display: flex;
	position: relative;
	justify-content: center;
	align-items: center;
	border-radius: 10px;
	background-color: #feefd0;
}

.close_auth_failed {
	position: absolute;
	top: 7px;
	right: 10px;
}
.have_account_notification {
	margin-top: 10px;
}

.demo_account_dead {
	background-color: #fff;
	position: fixed;
	right: 30px;
	top: 30px;
	padding: 10px;
	border-radius: 30px;
	width: 300px;
}

.close_demo_acc_dead {
display: flex;
justify-content: flex-end;
}

.close_demo_acc_dead .close_button {
	background: #dce1ec;
	border-radius: 20px;
	padding: 2px 10px;
	width: 100px;
	cursor: pointer;
	display: flex;
	justify-content: space-between;
	align-items: center;
	transition: 200ms;
}

.demo_acc_dead_text {
	margin: 10px 3px;
	text-align: justify;
}

.form_error {
	display: none;
	margin-top: 10px;
	color: var(--bs-danger);
	font-size: 14px;
}

.form_error.active {
	display: block;
}