.signup-section {
	min-height: 70vh;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 20px;
}

.signup-wrapper {
	display: flex;
	width: 100%;
	max-width: 1200px;
	align-items: center;
	justify-content: center;
}

.signup-box {
	width: 100%;
	/*  max-width: 400px;*/
	padding: 40px 30px;
	border: 1px solid #e0e0e0;
	border-radius: 8px;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.signup-title {
	font-size: 24px;
	font-weight: 600;
	margin-bottom: 30px;
	text-align: center;
}

.form-label {
	font-weight: 500;
	margin-bottom: 8px;
	display: block;
}

.form-control {
	width: 100%;
	padding: 12px 15px;
	border: 1px solid #e0e0e0;
	border-radius: 4px;
	font-size: 16px;
	transition: border-color 0.2s;
}

	.form-control:focus {
		border-color: #000;
		outline: none;
		box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.1);
	}

.btn-black {
	background-color: #000;
	color: white;
	width: 100%;
	padding: 12px;
	border: none;
	border-radius: 4px;
	font-size: 16px;
	font-weight: 500;
	cursor: pointer;
}

	.btn-black:hover {
		background-color: #333;
	}

.login {
	text-align: center;
	margin-top: 20px;
	font-size: 14px;
	color: #4a4a4a;
}

	.login a {
		color: #4a90e2;
		text-decoration: none;
		font-weight: 500;
	}

		.login a:hover {
			text-decoration: underline;
		}

.policy {
	text-align: center;
	margin-top: 30px;
	font-size: 12px;
	color: #4a4a4a;
	line-height: 1.4;
}

	.policy a {
		color: #4a90e2;
		text-decoration: none;
	}

		.policy a:hover {
			text-decoration: underline;
		}

.illustration {
	display: none;
}

@media (min-width: 992px) {
	.signup-wrapper {
		justify-content: space-around;
	}

	.signup-box {
		/*    max-width: 450px;*/
		margin-right: 20px;
	}

	.illustration {
		display: block;
		max-width: 500px;
	}

		.illustration img {
			width: 100%;
			height: auto;
			border-radius: 8px;
		}
}





/* =========================
   PROFILE IMAGE (HEADER)
========================= */
.profile-image-wrapper {
	display: flex;
	flex-direction: column;
	align-items: center;
	margin-bottom: 30px;
}

.profile-image-preview {
	cursor: pointer;
}

	.profile-image-preview img {
		width: 120px;
		height: 120px;
		object-fit: cover;
		border-radius: 50%;
		border: 2px solid #e0e0e0;
		background-color: #f8f8f8;
		transition: transform 0.2s ease, box-shadow 0.2s ease;
	}

		.profile-image-preview img:hover {
			transform: scale(1.03);
			box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
		}

.profile-image-wrapper label.btn {
	margin-top: 8px;
	font-size: 13px;
	padding: 6px 14px;
}

/* =========================
   FORM SECTIONS
========================= */
.form-section-title {
	font-size: 14px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	color: #666;
	margin: 35px 0 15px;
}

.form-divider {
	border: none;
	height: 1px;
	background: #eaeaea;
	margin: 30px 0 20px;
}

/* =========================
   FILE INPUT (HIDDEN)
========================= */
input[type="file"].d-none {
	display: none;
}
