/* No-flash safety net for the instant before the removal <script> (see
   Redplus_PL_Login_Page::removal_script()) actually deletes these nodes
   from the DOM. The script is what reliably gets rid of them — this CSS
   only covers the brief moment before it runs, and is intentionally
   broad/redundant (ID selectors + generic wrapper selectors) because a
   theme or another login-styling plugin may not use WordPress's default
   markup structure. !important is deliberate: this must win over
   whatever else is styling this page. */
body.login #loginform #user_login,
body.login #loginform #user_pass,
body.login #loginform #wp-submit,
body.login #loginform #rememberme,
body.login #loginform label[for="user_login"],
body.login #loginform label[for="user_pass"],
body.login #loginform .forgetmenot,
body.login #loginform p.submit,
body.login #loginform p:not(.redplus-pl-login *),
body.login #nav,
body.login #backtoblog {
	display: none !important;
	visibility: hidden !important;
}

.redplus-pl-login {
	display: flex;
	flex-direction: column;
	gap: 12px;
	margin-top: 8px;
}

.redplus-pl-login label {
	font-weight: 600;
	font-size: 14px;
}

.redplus-pl-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	padding: 10px 16px;
	font-size: 14px;
	border-radius: 4px;
	border: 1px solid #8c8f94;
	background: #f6f7f7;
	cursor: pointer;
}

.redplus-pl-btn-primary {
	background: #2271b1;
	border-color: #2271b1;
	color: #fff;
	font-weight: 600;
}

.redplus-pl-btn:disabled {
	opacity: 0.5;
	cursor: not-allowed;
}

.redplus-pl-btn-link {
	display: inline-flex;
	width: 100%;
	justify-content: center;
	padding: 6px;
	font-size: 13px;
	color: #2271b1;
	background: none;
	border: none;
	cursor: pointer;
	text-decoration: underline;
}

.redplus-pl-hint {
	font-size: 12px;
	color: #646970;
	margin: 0;
}

.redplus-pl-login [data-redplus-email-step],
.redplus-pl-login [data-redplus-code-step] {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.redplus-pl-login input[type="email"],
.redplus-pl-login input[type="text"] {
	width: 100%;
	padding: 8px;
	border: 1px solid #8c8f94;
	border-radius: 4px;
	box-sizing: border-box;
}

.redplus-pl-login #redplus-pl-code {
	letter-spacing: 4px;
	font-size: 18px;
	text-align: center;
}

.redplus-pl-status {
	min-height: 1.2em;
	font-size: 13px;
	color: #2271b1;
}
