/* ============ Auth Shared Styles (Login / Lost / Reset) ============ */

:root {
	--auth-bg: #f9f9f9;
	--auth-border: #ddd;
	--auth-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
	--auth-text: #333;
	--auth-primary: #0073aa;
	--auth-primary-hover: #005177;
	--auth-success-bg: #e7f7ec;
	--auth-success-border: #b7e4c3;
	--auth-success-text: #1b6e31;
	--auth-error-bg: #fde8e8;
	--auth-error-border: #f5c2c0;
	--auth-error-text: #9b1c1c;
  }
  
  .benchmark-login-container {
	display: flex;
	justify-content: center;
	align-items: stretch;
	gap: 40px;
	max-width: 1000px;
	margin: 50px auto;
	padding: 20px;
	font-family: Arial, sans-serif;
  }
  
  .benchmark-login-left,
  .benchmark-login-wrapper {
	flex: 1;
	display: flex;
	flex-direction: column;
	justify-content: center;
	max-width: 400px;
	padding: 30px;
	background: var(--auth-bg);
	border: 1px solid var(--auth-border);
	border-radius: 8px;
	box-shadow: var(--auth-shadow);
	box-sizing: border-box;
  }
  
  .benchmark-login-left {
	text-align: center;
  }
  
  .benchmark-logo {
	max-width: 200px;
	margin: 10px auto;
	display: block;
  }
  
  .benchmark-description {
	font-size: 16px;
	margin-top: 20px;
	color: var(--auth-text);
	line-height: 1.5;
  }
  
  .benchmark-login-wrapper h2 {
	text-align: center;
	margin-top: 0;
  }
  
  .benchmark-login-wrapper form {
	display: flex;
	flex-direction: column;
  }
  
  .benchmark-login-wrapper label {
	margin-bottom: 5px;
	font-weight: bold;
  }
  
  .benchmark-login-wrapper input[type="text"],
  .benchmark-login-wrapper input[type="password"],
  .benchmark-login-wrapper input[type="email"] {
	padding: 10px;
	margin-bottom: 15px;
	border: 1px solid #ccc;
	border-radius: 4px;
	width: 100%;
	box-sizing: border-box;
  }
  
  .benchmark-login-wrapper .forgetmenot {
	margin-bottom: 15px;
  }
  
  .benchmark-login-wrapper .submit,
  .benchmark-login-wrapper .actions {
	display: flex;
	justify-content: center;
  }
  
  .benchmark-login-wrapper input[type="submit"],
  .benchmark-login-wrapper button {
	background-color: var(--auth-primary);
	color: white;
	padding: 12px 20px;
	border: none;
	border-radius: 4px;
	cursor: pointer;
	width: 100%;
	max-width: 200px;
	margin: 0 auto;
	display: block;
	font-size: 16px;
  }
  
  .benchmark-login-wrapper input[type="submit"]:hover,
  .benchmark-login-wrapper button:hover {
	background-color: var(--auth-primary-hover);
  }
  
  .benchmark-login-wrapper a {
	color: var(--auth-primary);
	text-decoration: none;
	text-align: center;
	display: block;
	margin-top: 10px;
  }
  
  .benchmark-login-wrapper a:hover {
	text-decoration: underline;
  }
  
  /* Notices */
  .notice {
	padding: 12px 15px;
	border-radius: 6px;
	margin-bottom: 15px;
  }
  
  .notice-success {
	background: var(--auth-success-bg);
	border: 1px solid var(--auth-success-border);
	color: var(--auth-success-text);
  }
  
  .notice-error {
	background: var(--auth-error-bg);
	border: 1px solid var(--auth-error-border);
	color: var(--auth-error-text);
  }
  
  /* Cloudflare Turnstile alignment (if present) */
  .cf-turnstile {
	display: flex;
	justify-content: center;
	margin: 10px 0 15px;
  }
  
  /* Responsive */
  @media (max-width: 768px) {
	.benchmark-login-container {
	  flex-direction: column;
	  align-items: center;
	  gap: 20px;
	  padding: 10px;
	}
  
	.benchmark-login-left,
	.benchmark-login-wrapper {
	  max-width: 100%;
	  width: 100%;
	}
  
	.benchmark-description {
	  font-size: 15px;
	  padding: 0 10px;
	}
  }
  
  /* Optional: subtle helper for small muted text */
  .text-muted {
	color: #666;
	font-size: 0.92rem;
	text-align: center;
  }
  
  /* Optional dark mode (if you want to toggle via a class on <body>) */
  body.bms-dark {
	--auth-bg: #121212;
	--auth-border: #242424;
	--auth-text: #e6e6e6;
	--auth-shadow: 0 0 0 rgba(0,0,0,0);
	--auth-primary: #2ea0ff;
	--auth-primary-hover: #1f7fcc;
	--auth-success-bg: #0f3a1f;
	--auth-success-border: #175a2e;
	--auth-success-text: #bff7d1;
	--auth-error-bg: #3a0f0f;
	--auth-error-border: #5a1717;
	--auth-error-text: #ffd6d6;
  }