.sign {
	display: block;
	position: relative;
	min-height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
}

.sign__content {
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: auto;
	padding: 20px;
}

.sign__form {
	background-color: #16151a;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	border-radius: 12px;
	padding: 30px 20px;
	position: relative;
	width: 100%;
	max-width: 420px;
	border: 1px solid #222227;
}

.sign__logo {
	display: block;
	margin-bottom: 30px;
}

.sign__logo img {
	width: 100px;
}

.sign__input {
	background-color: #222227;
	border: 1px solid transparent;
	border-radius: 12px;
	height: 46px;
	position: relative;
	color: #fff;
	font-size: 16px;
	width: 100%;
	padding: 0 20px;
	font-family: 'Inter', sans-serif;
}

.sign__input:focus {
	border-color: #25a56a;
}

.sign__input.error {
	border-color: #eb5757;
}

.sign__group {
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
	align-items: flex-end;
	flex-wrap: wrap;
	position: relative;
	margin-bottom: 20px;
	width: 100%;
}

.sign__group--checkbox {
	width: 100%;
	text-align: left;
}

.sign__group--checkbox input:not(:checked),
.sign__group--checkbox input:checked {
	position: absolute;
	left: -9999px;
}

.sign__group--checkbox input:not(:checked) + label,
.sign__group--checkbox input:checked + label {
	font-size: 14px;
	color: #c0c0c0;
	font-weight: normal;
	position: relative;
	cursor: pointer;
	padding-left: 35px;
	line-height: 22px;
	margin: 0;
}

.sign__group--checkbox input:not(:checked) + label:before,
.sign__group--checkbox input:checked + label:before {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	width: 22px;
	height: 22px;
	background-color: #222227;
	border: 1px solid transparent;
	border-radius: 6px;
}

.sign__group--checkbox input:not(:checked) + label:after,
.sign__group--checkbox input:checked + label:after {
	content: '✓';
	position: absolute;
	left: 0;
	top: 0;
	width: 22px;
	height: 22px;
	text-align: center;
	line-height: 22px;
	transition: 0.5s ease;
	border-radius: 6px;
	color: #25a56a;
	font-weight: bold;
}

.sign__group--checkbox input:not(:checked) + label:after {
	opacity: 0;
	transform: scale(0);
}

.sign__group--checkbox input:checked + label:after {
	opacity: 1;
	transform: scale(1);
}

.sign__btn {
	width: 100%;
	height: 50px;
	border-radius: 12px;
	background-color: #25a56a;
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	color: #fff;
	font-size: 14px;
	position: relative;
	z-index: 2;
	text-transform: uppercase;
	font-family: 'Inter', sans-serif;
	font-weight: 500;
	margin: 15px auto;
	cursor: pointer;
}

.sign__btn:hover {
	color: #fff;
	background-color: #1d8454;
}

.sign__text {
	margin-top: 15px;
	font-size: 14px;
	line-height: 24px;
	color: #fff;
	width: 100%;
	text-align: center;
}

.sign__text:first-child {
	margin-top: 0;
}

.sign__text a {
	position: relative;
	color: #25a56a;
}

.sign__text a:hover {
	color: #25a56a;
	text-decoration: underline;
}

.sign__delimiter {
	font-size: 14px;
	color: #c0c0c0;
	line-height: 100%;
	width: 100%;
	display: block;
	text-align: center;
	margin: 15px 0;
}
