.modal-dialog {
	position: relative;
	max-width: 520px;
	padding: 45px;
	background-color: #101519;
	top: 150px;
}

.modal-content,
.modal-body {
	background-color: transparent;
	border: none;
}

.modal-body {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	padding: 0;
}

.modal-logo {
	position: absolute;
	top: -130px;
	left: 50%;
	transform: translate(-50%);
	width: 285px;
	height: 187px;
}

.modal-logo img {
	max-width: 100%;
}

.modal-title {
	padding: 30px;
	font-size: 16px;
	font-weight: 700;
	color: #ffc100;
	text-transform: uppercase;
}

.form-login {
	width: 100%;
	padding: 25px 0;
}

.form-group {
	position: relative;
	padding: 15px 0;
}

.form-control {
	background-color: #090e13;
	border: none;
	color: #49535a;
	min-height: 60px;
	font-weight: 700;
	text-transform: uppercase;
}

.form-control:focus {
	box-shadow: none;
	background-color: #0c131a;
	color: white;
}

.form-group::after {
	display: flex;
	justify-content: center;
	content: '';
	position: absolute;
	top: -5px;
	width: 100%;
	height: 40px;
	background: url(../images/form-arrows.png) center no-repeat;
}

.form-icon {
	display: flex;
	justify-content: center;
	content: '';
	position: absolute;
	top: -5px;
	width: 100%;
	height: 40px;
}

.form-group.login .form-icon {
	background: url(../images/form-login-icon.png) center no-repeat;
}

.form-group.password .form-icon {
	background: url(../images/form-password-icon.png) center no-repeat;
}

.form-group.email .form-icon {
	background: url(../images/form-email-icon.png) center no-repeat;
}

.form-control::placeholder,
.form-control {
	text-align: center;
}

.submit-btn {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 46px;
	margin-top: 30px;
}

.accept-rules {
	margin-top: 30px;
	display: flex;
	gap: 15px;
}
.rules-link {
	color: #ffc100;
	text-decoration: underline;
	margin-left: 7px;
}

.custom-checkbox {
	position: absolute;
	z-index: -1;
	opacity: 0;
}

.custom-checkbox + label {
	position: relative;
	cursor: pointer;
	display: inline;
	align-items: center;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	padding-left: 30px;
}
.custom-checkbox + label::before {
	position: absolute;
	top: -4px;
	left: 0;
	content: '';
	display: flex;
	width: 20px;
	height: 20px;
	background-image: url(../images/custom-checkbox.png);
	background-repeat: no-repeat;
	background-position: center center;
}

.custom-checkbox:checked + label::before {
	content: '';
	position: absolute;
	top: -6px;
	left: 2px;
	background-image: url(../images/custom-checkbox-checked.png);
}
