/* 
 * Do-Locker CSS
 */

.do-locker-content-wrapper {
	position: relative;
	overflow: hidden;
}

.do-locker-overlay {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 100%;
	/* Fade out the text */
	background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.9) 40%, rgba(255, 255, 255, 1) 100%);
	display: flex;
	align-items: flex-end;
	justify-content: center;
	padding-bottom: 20px;
}

.do-locker-cta {
	background: #ffffff;
	border: 1px solid #e2e8f0;
	border-radius: 12px;
	padding: 40px;
	text-align: center;
	max-width: 500px;
	width: 90%;
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
	z-index: 10;
	margin-bottom: 20px;
}

.do-locker-cta h3 {
	font-family: var(--myfoly-font-display, Georgia, serif);
	font-size: 1.6rem;
	font-weight: 700;
	color: #0f172a;
	margin-top: 0;
	margin-bottom: 15px;
}

.do-locker-cta p {
	font-family: var(--myfoly-font-body, sans-serif);
	font-size: 1rem;
	color: #475569;
	margin-bottom: 30px;
}

.do-locker-actions {
	display: flex;
	gap: 15px;
	justify-content: center;
}

.do-locker-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 12px 24px;
	border-radius: 6px;
	font-weight: 600;
	text-decoration: none !important;
	transition: all 0.2s ease;
	font-family: var(--myfoly-font-body, sans-serif);
}

.do-locker-login {
	background: #e63946; /* Using theme accent color fallback */
	color: #ffffff !important;
	border: 1px solid #e63946;
}

.do-locker-login:hover {
	background: #be1226;
	border-color: #be1226;
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(230, 57, 70, 0.3);
}

.do-locker-register {
	background: #ffffff;
	color: #0f172a !important;
	border: 1px solid #cbd5e1;
}

.do-locker-register:hover {
	background: #f1f5f9;
	border-color: #94a3b8;
	transform: translateY(-2px);
}

@media (max-width: 600px) {
	.do-locker-actions {
		flex-direction: column;
	}
	.do-locker-btn {
		width: 100%;
	}
}
