@charset "UTF-8";

:root {
  --headerHeight: 104px;
}

body {
	background-color: #00070D;
}
.kv-area {
	aspect-ratio: 1440/786;
	position: relative;
}
.kv-area__image {
	width: 100%;
	height: 100%;
	background: url(../img/login/kv.jpg) no-repeat center;
	background-size: cover;
	position: absolute;
	top: 0;
	left: 0;
}
.kv-area .lead,
.kv-area .text {
	color: #fff;
}
.kv-area__content {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	align-items: center;
	width: 100%;
	height: 100%;
	position: relative;
	z-index: 1;
}
.kv-area .lead {
	max-width: 432px;
}
.kv-area__form-wrapper {
	display: flex;
	align-items: center;
	justify-content: center;
	justify-self: center;
	width: 356px;
	padding: 48px;
	background-color: rgba(0, 7, 13, 0.8);
	border-radius: 4px;
}
.form-login {
	position: relative;
	width: 100%;
}
.form-login > * + * {
	margin-top: 32px;
}
.form-login__title {
	display: flex;
	justify-content: center;
	color: #fff;
	font-size: 2rem;
	font-weight: 700;
	line-height: 1.2;
	padding-bottom: 16px;
	position: relative;
}
.form-login__title::after {
	content: '';
	display: block;
	width: 32px;
	height: 2px;
	background-color: #fff;
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translate(-50%, 0);
}
.form-login__body {

}
.form-login__item {
	width: 100%;
}
.form-login__item + .form-login__item {
	margin-top: 8px;
}
.form-login__input {
	appearance: none;
	width: 100%;
	padding: 8px 16px;
	border-radius: 2px;
	border: 0;
	outline: none;
	color: #64748B;
	font-size: 1.2rem;
}
.login_button {
	border: 1px solid #FFF;
    background-color: unset;
    color: #fff;
    width: 200px;
    height: 48px;
    margin: 32px auto;
    display: block;
    cursor: pointer;
    transition: .3s all;
}
.login_button:hover {
	background-color: #fff;
	color: unset;
}
.error {
	font-size: 16px;
	color: #ff0000;
    position: absolute;
    bottom: 100px;
}
.link-password {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
	width: fit-content;
	margin: 32px auto 0;
	color: #fff;
	font-size: 1.2rem;
	line-height: 1.2;
}
.link-password:hover {
	opacity: 1;
	text-decoration: underline;
}
.link-password::before {
	content: '';
	display: block;
	aspect-ratio: 4.29 / 12;
	width: 5.3px;
	background: url(../img/common/icon_toggle.svg) no-repeat center;
	background-size: contain;
}
.section-banner {
	background-color: #00070D;
}
.banner-title {
	color: #fff;
}
.footer__foot {
	max-width: 1216px;
	margin: 0 auto;
}
.footer__copyright {
	display: inline-block;
	color: #fff;
	opacity: 0.8;
}