/**
 * Login container styles - shown on B2B ordering page when not logged in
 */
.login-container {
	max-width: 400px;
	margin: 40px auto;
	padding: 30px;
	background: #fff;
	border: 1px solid #ddd;
	box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}
.login-container h2 {
	margin-bottom: 20px;
	text-align: center;
	font-weight: 600;
}
.login-container form {
	margin-top: 20px;
}
.login-container label {
	display: block;
	margin-bottom: 5px;
	font-weight: 500;
}
.login-container input[type="text"],
.login-container input[type="password"] {
	width: 100%;
	padding: 10px;
	margin-bottom: 15px;
	border: 1px solid #ddd;
	background: #f8f8f8;
}
.login-container .button {
	width: 100%;
	padding: 12px;
	background: #e60000;
	color: white;
	border: none;
	cursor: pointer;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	transition: background 0.3s;
}
.login-container .button:hover {
	background: #cc0000;
}
.login-container .login-remember {
	margin-bottom: 15px;
}
.login-container .login-remember label {
	display: inline;
	margin-left: 5px;
}
.account-link {
	margin-top: 15px;
	text-align: center;
}
.access-request-button {
	display: inline-block;
	width: 100%;
	padding: 12px;
	background: #0066cc;
	color: white;
	text-decoration: none;
	text-align: center;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	transition: background 0.3s;
}
.access-request-button:hover {
	background: #0052a3;
}
.open-account-button {
	display: inline-block;
	width: 100%;
	padding: 12px;
	background: #000000;
	color: white;
	text-decoration: none;
	text-align: center;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	transition: background 0.3s;
}
.open-account-button:hover {
	background: #333333;
}

/* Account manager login (separate shortcode) */
.login-container {
	max-width: 400px;
	margin: 40px auto;
	padding: 20px;
	background: #fff;
	border-radius: 5px;
	box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}
