.register_component__card {
	display: flex;
	flex-direction: row;
	width: 100%;
	max-width: 1000px;
	overflow: hidden;
	z-index: 5;
	border-radius: 10px;
	box-shadow: 1px 2px 15px rgba(54, 41, 76, 0.1);
	position: relative;
	background: #ffffff;
}

.register_component__image-wrapper {
	width: 50%;
	height: auto;
}

.register_component__image {
	min-height: 100%;
	height: 100%;
	width: 100%;
	object-fit: cover;
}

.register_component__form-wrapper {
	display: flex;
	flex-direction: column;
	gap: 12px;
	width: 50%;
	padding: 24px;
}

.register_component__text-wrapper {
	display: flex;
	flex-direction: column;
	gap: 8px;
	text-align: center;
}

.register_component__divider {
	height: 1px;
	width: 100%;
	background: #e7e7e7;
	margin: 0;
	padding: 0;
	border: none;
}

.register_component__form {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.register_component__form-item-wrapper {
	display: flex;
	gap: 16px;
}

.register_component__button-wrapper {
	display: flex;
	flex-direction: column;
	justify-content: center;
	text-align: center;
	gap: 8px;
}

.register_component__button:hover {
	background: #fccd11 !important;
}

.register_component__xlarge-text {
	font-size: 18px;
	letter-spacing: 0.6px;
	font-weight: 500;
	line-height: 1.3;
	margin: 0;
	padding: 0;
	font-family: Inter, sans-serif;
}

.register_component__large-text {
	font-size: 16px;
	letter-spacing: 0.53px;
	line-height: 1.3;
	margin: 0;
	padding: 0;
}

.register_component__small-text {
	font-size: 12px;
	letter-spacing: 0;
	line-height: 1.3;
	margin: 0;
	padding: 0;
}

.register_component__separator-wrapper {
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
}

.register_component__separator-text {
	position: relative;
	z-index: 2;
	padding: 0 10px;
	background: #fff;
}

.register_component__separator {
	position: absolute;
	width: 100%;
	height: 1px;
	left: 0;
	top: 0;
	bottom: 0;
	margin: auto 0;
	background: #e7e7e7;
	border: none;
}

.register_component__link {
	color: #0a7cff;
	font-weight: 500;
}

@media (max-width: 1023px) {
	.register_component__image-wrapper {
		display: none;
	}

	.register_component__form-wrapper {
		width: 100%;
	}
}

@media (max-width: 767px) {
	.register_component__form {
		gap: 6px;
	}

	.register_component__form-item-wrapper {
		flex-direction: column;
		gap: 6px;
	}
}

