:root {
}

.register-form-wrapper {
	position: relative;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	display: block;
	max-width: 450px;
	width: 100%;
	height: auto;
	padding-top: 2rem;
	padding-left: 1rem;
	padding-right: 1rem;
	padding-bottom: 3rem;
	background-color: var(--color_white);
	overflow: hidden;
	z-index: 2;
}

.greeting-wrapper {
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: center;
	margin-bottom: 3rem;
}

.form-logo {
	width: 6rem;
	height: auto;
}

.form-logo img {
	width: 100%;
}

.form-title {
	color: var(--color_black);
	font-size: var(--font-size_head_2);
	font-weight: var(--font-weight_bold);
	line-height: var(--line-height_sm);
}

.register-form {
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: center;
	row-gap: 1.25rem;
	max-width: 10;
}

.user-type-wrapper {
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: flex-start;
	row-gap: 1.25rem;
	max-width: 100%;
	width: 100%;
}

.user-type-wrapper > div.check-box__a label {
	flex: 1;
	max-width: unset;
	min-width: unset;
	width: auto;
}

.register-form-wrapper .check-box__a,
.register-form-wrapper .check-box__b,
.register-form .text-field__b,
.register-form-wrapper .button__a {
	max-width: 100%;
	width: 100%;
}

.consent-wrapper {
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: flex-start;
	row-gap: 0.25rem;
	max-width: 100%;
	width: 100%;
	border: var(--border_light_1);
}

.consent-wrapper .border-bottom__1 {
	border-bottom: var(--border_light_1);
}

.consent-wrapper .padding-right__1 {
	padding-right: 1rem;
}

@media screen and (min-width: 768px) {
	:root {
	}

	.register-form-wrapper {
		padding-left: 0;
		padding-right: 0;
	}
}

@media screen and (min-width: 1440px) {
	:root {
	}

	.user-type-wrapper {
		display: flex;
		flex-direction: row;
		flex-wrap: nowrap;
		justify-content: flex-start;
		align-items: flex-start;
		column-gap: 0.5rem;
		max-width: 100%;
		width: 100%;
	}
}
