/* POP360 Login Widget Styles
   Widget-specific styles only. Shared auth styles are in pop360-base.css */


/* --------------------------------------------------------------------------
   Form Options (Remember Me + Forgot Password)
   -------------------------------------------------------------------------- */
.pop360-form-options {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 24px;
	flex-wrap: wrap;
	gap: 12px;
}

.pop360-remember-me {
	display: flex;
	align-items: center;
	gap: 8px;
	font-family: var(--pop360-font);
	font-size: 14px;
	color: #444;
	cursor: pointer;
}

.pop360-remember-me input[type="checkbox"] {
	width: 18px;
	height: 18px;
	cursor: pointer;
}

.pop360-forgot-password {
	font-family: var(--pop360-font);
	font-size: 14px;
	color: var(--pop360-primary);
	text-decoration: none;
}

.pop360-forgot-password:hover {
	text-decoration: underline;
}


/* --------------------------------------------------------------------------
   Logged-In Message Buttons
   -------------------------------------------------------------------------- */
.pop360-logged-in-message .btn {
	padding: 12px 24px;
	border-radius: var(--pop360-radius-md);
	font-family: var(--pop360-font);
	font-weight: 600;
	text-decoration: none;
	transition: all 0.2s;
}

.pop360-logged-in-message .btn-primary {
	background: var(--pop360-primary);
	color: #fff;
}

.pop360-logged-in-message .btn-secondary {
	background: #f1f5f9;
	color: #475569;
}


/* --------------------------------------------------------------------------
   Blocked Message (Login-Specific)
   -------------------------------------------------------------------------- */
.pop360-blocked-message h3 {
	font-family: var(--pop360-font);
	font-weight: 700;
	font-size: 24px;
	margin-bottom: 12px;
	color: var(--pop360-error);
}

.pop360-blocked-message p {
	font-family: var(--pop360-font);
	font-size: 16px;
	color: var(--pop360-text-muted);
	margin-bottom: 12px;
	line-height: 1.5;
}

.pop360-blocked-message .pop360-blocked-info {
	font-size: 14px;
	color: #999;
	font-style: italic;
	margin-top: 20px;
}


/* --------------------------------------------------------------------------
   Responsive: Mobile
   -------------------------------------------------------------------------- */
@media (max-width: 767px) {
	.pop360-form-options {
		flex-direction: column;
		gap: 8px;
		align-items: flex-start;
	}

	.pop360-blocked-message h3 {
		font-size: 20px;
	}

	.pop360-blocked-message p {
		font-size: 14px;
	}

	.pop360-logged-in-message .btn {
		width: 100%;
		text-align: center;
	}
}
