/* B2B registration page — extends login layout */

body.rd-isolated-ui.rd-login-body.b2b-register-page .rd-login-wrap {
	max-width: 760px !important;
}

body.rd-isolated-ui.rd-login-body.b2b-register-page .rd-login-card {
	padding: 42px 44px 36px !important;
}

.b2b-register-sections {
	display: flex;
	flex-direction: column;
	gap: 28px;
}

.b2b-register-section {
	display: flex;
	flex-direction: column;
	gap: 14px;
}

.b2b-register-section-title {
	margin: 0;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: #374151;
}

.b2b-register-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 16px;
}

.b2b-register-form .rd-field:has(input[required]) > label::after {
	content: ' *';
	color: #dc2626;
	font-size: 12px;
	font-weight: 600;
	line-height: 1;
}

.b2b-hp {
	position: absolute;
	left: -9999px;
	width: 1px;
	height: 1px;
	overflow: hidden;
	opacity: 0;
	pointer-events: none;
}

.rd-login-alt {
	text-align: center;
	font-size: 14px;
	color: #6b7280;
	margin-bottom: 16px;
}

.rd-login-alt a {
	color: var(--rd-site-accent, #2563eb);
	font-weight: 600;
	text-decoration: none;
}

.rd-login-alt a:hover {
	text-decoration: underline;
}

.b2b-register-success-text {
	margin-bottom: 0 !important;
}

body.rd-isolated-ui.rd-login-body .rd-field input[type='tel'] {
	border: 1px solid #d1d5db;
	border-radius: 8px;
	padding: 10px 13px;
	font-size: 14px;
	color: #111827;
	background: #fff;
	width: 100%;
	outline: none;
	transition: border-color 0.15s ease, box-shadow 0.15s ease;
	appearance: none;
}

body.rd-isolated-ui.rd-login-body .rd-field input[type='tel']:focus {
	border-color: var(--rd-site-accent, #2563eb);
	box-shadow: 0 0 0 3px color-mix(in srgb, var(--rd-site-accent, #2563eb) 18%, transparent);
}

@media (max-width: 640px) {
	body.rd-isolated-ui.rd-login-body.b2b-register-page .rd-login-wrap {
		max-width: 420px !important;
	}

	.b2b-register-grid {
		grid-template-columns: 1fr;
	}
}
