.ccmoc-login-required {
	display: flex;
	align-items: center;
	gap: 14px;
	width: 100%;
	box-sizing: border-box;
	margin: 18px 0;
	padding: 16px;
	border: 1px solid rgba(69, 155, 230, 0.5);
	border-radius: 10px;
	background: #1b2836;
	color: #fff;
	box-shadow: 0 8px 22px rgba(0, 0, 0, 0.18);
}

.ccmoc-lock {
	display: grid;
	flex: 0 0 42px;
	width: 42px;
	height: 42px;
	place-items: center;
	border-radius: 50%;
	background: #2f3c4a;
	font-size: 20px;
}

.ccmoc-copy {
	display: flex;
	flex: 1 1 auto;
	min-width: 0;
	flex-direction: column;
	gap: 2px;
	line-height: 1.4;
}

.ccmoc-copy strong {
	color: #fff;
	font-size: 16px;
}

.ccmoc-copy span {
	color: rgba(255, 255, 255, 0.78);
	font-size: 14px;
}

.ccmoc-account-button,
.ccmoc-account-button:visited {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 42px;
	padding: 9px 16px;
	border: 1px solid #459be6;
	border-radius: 8px;
	background: #459be6;
	color: #fff !important;
	font-size: 14px;
	font-weight: 700;
	line-height: 1.2;
	text-align: center;
	text-decoration: none !important;
	transition: background-color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.ccmoc-account-button:hover,
.ccmoc-account-button:focus {
	border-color: #2364b0;
	background: #2364b0;
	color: #fff !important;
	transform: translateY(-1px);
}

@media (max-width: 600px) {
	.ccmoc-login-required {
		align-items: stretch;
		flex-wrap: wrap;
	}

	.ccmoc-copy {
		flex-basis: calc(100% - 56px);
	}

	.ccmoc-account-button {
		width: 100%;
	}
}

