@import url('https://fonts.googleapis.com/css2?family=Lato:wght@400;700&display=swap');
html, body {
	margin: 0;
	padding: 0;
}

body {
	font-family: 'Lato';
	background: #F8FAFC;
	width: 100vw;
  	height: 100vh;
}

.main-block {
	width: 100vw;
  	height: 100vh;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
}

.block-items {
	width: 508px;
	border-radius: 8px;
	background: #fff;
}

.block-items-detail {
	padding: 30px;
}

.item-login {
	text-align: center;;
	font-size: 24px;
	color: #424852;
}
.logo {
    width: 225px;
	margin-bottom: 20px;
}

.logo img {
	width: 100%;
}

.field {
	clear: both;
	text-align: right;
	line-height: 30px;
}

.field label {
	float: left;
	padding-right: 20px;
	color: #9DA6B2;
	font-size: 14px;
}

.field input {
	height: 27px;
	width: 75%;
	border: 1px solid rgba(157, 166, 179, 0.5);
	border-radius: 7px;
}

.main-fields {
	width: 100%;
	margin-top: 40px;
}

.line-item {
	width: 100%;
	height: 1px;
	background: #9DA6B3;
	opacity: 0.25;
	margin-top: 30px;
}

.input-field {
	margin-top: 40px;
	display: flex;
	height: 25px;
}

.input-field input[type="checkbox"]+label::after {
    content: '';
    position: absolute;
    width: 25px;
    height: 25px;
    border: 1px solid rgba(157, 166, 179, 0.5);
    border-radius: 7px;
    background-color: #fff;
}

.input-field input[type="checkbox"]+label::before {
    content: "";
    position: absolute;
	margin-top: 10px;
    margin-left: 8px;
    width: 11px;
    height: 7px;
    opacity: 0;
    background-image: url(../img/icons/checkbox_check.svg);
    z-index: 1;
}

.input-field input[type="checkbox"]:checked+label::before {
    opacity: 1;
}

.label-text {
	margin-left: 40px;
	display: flex;
	align-items: center;
	font-size: 15px;
}

.link-text {
	display: flex;
	align-items: center;
	margin-left: auto;
	color: #9DA6B2;
	font-size: 14px;
}

.item-button {
	margin-top: 40px;
	text-align: center;
}

.item-button-forget-password {
	margin-top: 60px;
	display: flex;
}

.button-submit, .button-submit-forgot-password{
	padding: 0px 40px;
	width: 100%;
	height: 40px;
	background: #7FC64F;
	box-shadow: 0px 10px 15px rgba(127, 198, 79, 0.15);
	border-radius: 7px;
	border: 0px;
	text-transform: uppercase;
	color: #fff;
	cursor: pointer;
	margin-left: auto;
}

.button-submit-forgot-password {
	width: unset;
}

.button-submit-proceed {
	width: 190px;
}

.button-cancel {
	padding: 0px 40px;
	height: 40px;
	background: #fff;
	border-radius: 7px;
	border: 1px solid #424852;
	text-transform: uppercase;
	color: #424852;
	cursor: pointer;
}

.errors {
	display: none;
    align-items: center;
	margin-top: 30px;
	width: 100%;
	height: 40px;
	background: rgba(232, 18, 18, 0.2);
	border-radius: 8px;
}

.ban {
	width: 16px;
	height: 16px;
	margin-left: 16px;
	background: url(../img/new-icons/icon_ban_black_16x16.svg) center no-repeat;
}

.text-error {
	color: #424852;
	font-size: 12px;
	margin-left: 14px;
}

.item-info, .item-info-message {
	margin-top: 40px;
	font-size: 12px;
	color: #424852;
	text-align: center;
	font-weight: bold;
}

.item-info-message {
	font-weight: normal;
	font-size: 14px;
}