/* K18-check Plugin Styles */

/* Two column layout for login page */
#customer_login.col2-set {
	display: flex !important;
	gap: 30px;
	flex-wrap: wrap;
	align-items: flex-start;
	width: 100%;
}

#customer_login .u-column1,
#customer_login .u-column2 {
	flex: 1;
	min-width: 300px;
}

/* Registration notice styling */
.k18-registration-notice {
    margin-top: 77px;
	padding: 30px;
	background: #f7f7f7;
	height: 100%;
	box-sizing: border-box;
}

.k18-registration-notice h2 {
	margin-top: 0;
	margin-bottom: 20px;
	font-size: 1.5em;
	color: #333;
}

.k18-registration-notice p {
	margin-bottom: 20px;
	line-height: 1.6;
	color: #666;
}

.k18-registration-notice .button {
	display: inline-block;
	padding: 12px 24px;
	background: #0073aa;
	color: #fff;
	text-decoration: none;
	border-radius: 3px;
	transition: background 0.3s ease;
}

.k18-registration-notice .button:hover {
	background: #005177;
	color: #fff;
}

/* Responsive design */
@media screen and (max-width: 768px) {
	#customer_login.col2-set {
		flex-direction: column;
	}
	
	#customer_login .u-column1,
	#customer_login .u-column2 {
		width: 100%;
		min-width: 100%;
	}
	
	.k18-registration-notice {
		padding: 20px;
	}
}
