/* Login Branding Styles */

/* Logo — the compiled Tailwind subset has no preflight, so <img> stays
   display:inline by default and `mx-auto` alone can't center it. Force
   block + auto margins here instead; actual size comes from an inline
   style built from the Logo Width/Height settings. */
.clsc-lb-logo {
	display: block;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 0.5rem;
	max-width: 100%;
	height: auto;
}

/* Full-width, no-sidebar content wrapper (see page-wrapper.php). Keeps the
   theme's own container/padding out of the way so the form centers cleanly
   inside whatever content column get_header()/get_footer() leave behind. */
.clsc-lb-wrapper {
	width: 100%;
	max-width: 100%;
	margin: 0;
	padding: 0;
	float: none;
}
body.clsc-lb-page #primary,
body.clsc-lb-page .content-area,
body.clsc-lb-page .site-main {
	width: 100%;
	max-width: 100%;
	float: none;
}

.clsc-login-page a {
	color: var(--clsc-primary);
}
.clsc-login-page .clsc-form-box {
	background-color: var(--clsc-form-bg);
	border-radius: var(--clsc-border-radius);
}
.clsc-login-page a:hover {
	opacity: 0.8;
}
.clsc-login-page button[type="submit"] {
	background-color: var(--clsc-primary) !important;
	color: var(--clsc-btn-text) !important;
}
.clsc-login-page button[type="submit"]:hover {
	opacity: 0.9;
}
/* Password show/hide toggle */
.clsc-login-page .clsc-pass-toggle {
	position: absolute;
	top: 50%;
	right: 10px;
	transform: translateY(-50%);
	background: transparent;
	border: 0;
	padding: 2px;
	cursor: pointer;
	color: #9ca3af;
	line-height: 0;
}
.clsc-login-page .clsc-pass-toggle:hover,
.clsc-login-page .clsc-pass-toggle.clsc-pass-visible {
	color: var(--clsc-primary);
}
.clsc-login-page input.clsc-has-toggle {
	padding-right: 38px;
}
