/* Security Enhanced Mod - Stylesheet */

/* Force password change page */
#security_enhanced_force_password .se_notice_box {
	background: #fef9e3;
	border: 1px solid #e6db55;
	padding: 15px;
	margin-bottom: 20px;
	border-radius: 4px;
}

#security_enhanced_force_password .se_warning {
	color: #8a6d3b;
	font-weight: bold;
	margin-bottom: 10px;
}

#security_enhanced_force_password .se_password_requirements {
	background: #f4f4f4;
	border: 1px solid #ddd;
	padding: 15px;
	margin: 20px 0;
	border-radius: 4px;
}

#security_enhanced_force_password .se_password_requirements h4 {
	margin-top: 0;
	margin-bottom: 10px;
	color: #555;
}

#security_enhanced_force_password .se_password_requirements ul {
	margin: 0;
	padding-left: 20px;
}

#security_enhanced_force_password .se_password_requirements li {
	margin-bottom: 5px;
	color: #666;
}

/* Email verification page */
#security_enhanced_verify_email .se_success_box {
	background: #d4edda;
	border: 1px solid #c3e6cb;
	color: #155724;
	padding: 15px;
	margin-bottom: 20px;
	border-radius: 4px;
}

#security_enhanced_verify_email .se_error_box {
	background: #f8d7da;
	border: 1px solid #f5c6cb;
	color: #721c24;
	padding: 15px;
	margin-bottom: 20px;
	border-radius: 4px;
}

/* Admin panel enhancements */
.se_admin_note {
	background: #e7f3ff;
	border: 1px solid #b3d9ff;
	padding: 10px;
	margin: 10px 0;
	border-radius: 4px;
}

/* Password strength indicator (can be added later) */
.se_password_strength_meter {
	height: 5px;
	background: #ddd;
	border-radius: 3px;
	margin-top: 5px;
	overflow: hidden;
}

.se_password_strength_meter_fill {
	height: 100%;
	transition: width 0.3s ease, background-color 0.3s ease;
}

.se_password_strength_meter_fill.weak {
	width: 25%;
	background: #d9534f;
}

.se_password_strength_meter_fill.fair {
	width: 50%;
	background: #f0ad4e;
}

.se_password_strength_meter_fill.good {
	width: 75%;
	background: #5bc0de;
}

.se_password_strength_meter_fill.strong {
	width: 100%;
	background: #5cb85c;
}
