.sd-login-wrap {
	display: flex;
	min-height: 650px;
	background: #fff;
}

.sd-login-left {
	flex: 0 0 42%;
	padding: 60px 60px;
	box-sizing: border-box;
	background: #fff;
}

.sd-login-right {
	flex: 1;
	background: #5b0f12;
	position: relative;
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
}

.sd-login-right::before {
	content: "";
	position: absolute;
	inset: 0;
	background-image: linear-gradient(135deg, rgba(91, 15, 18, 1) 0%, rgba(129, 24, 28, 1) 60%, rgba(91, 15, 18, 1) 100%);
	z-index: 0;
}

.sd-login-right.sd-has-bg {
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
}

.sd-login-right.sd-has-bg::before {
	background: rgba(91, 15, 18, .55);
}

.sd-back-arrow {
	margin: 40px 0 10px;
	font-size: 20px;
	color: #111827;
	text-decoration: none;
	display: inline-block;
}

.sd-title {
	font-size: 34px;
	line-height: 1.15;
	margin: 10px 0 6px;
	color: #111827;
	font-weight: 600;
}

.sd-subtitle {
	margin: 0 0 28px;
	color: #6b7280;
	font-size: 14px;
}

.sd-field-label {
	display: block;
	font-size: 12px;
	color: #111827;
	margin-bottom: 8px;
	font-weight: 600;
}

.sd-input {
	width: 100%;
	height: 42px;
	border: 1px solid #d1d5db;
	border-radius: 0;
	padding: 0 12px;
	font-size: 14px;
	outline: none;
	box-sizing: border-box;
	background: #fff;
}

.sd-input:focus {
	border-color: #9b1c1f;
	box-shadow: 0 0 0 3px rgba(155, 28, 31, .12);
}

.sd-row {
	margin-bottom: 18px;
}

.sd-forgot {
	text-align: right;
	margin-top: 10px;
	font-size: 12px;
}

.sd-forgot a {
	color: #9b1c1f;
	text-decoration: none;
}

.sd-remember {
	display: flex;
	align-items: center;
	gap: 8px;
	margin: 6px 0 0;
	font-size: 12px;
	color: #6b7280;
}

.sd-btn {
	width: 100%;
	height: 48px;
	border: 0;
	background: #7f1d1d;
	color: #fff;
	font-weight: 600;
	border-radius: 6px;
	cursor: pointer;
	margin-top: 14px;
}

.sd-btn:hover {
	filter: brightness(1.05);
}

.sd-partner-id-hint {
	font-size: 11px;
	color: #9ca3af;
	margin-top: 5px;
	display: block;
}

@media (max-width:900px) {
	.sd-login-wrap {
		flex-direction: column;
		min-height: auto;
	}
	
	.sd-login-left {
		flex: 1;
		padding: 40px 22px;
	}
	
	.sd-login-right {
		min-height: 280px;
	}
}