/* Login Page Styles */

body {
	font-family: 'Inter', 'SF Pro Display', 'Segoe UI Variable', 'Roboto', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
	background-color: #f5f5f5;
	margin: 0;
	padding: 0;
}

.landing-container {
	max-width: 960px;
	margin: 0 auto;
	padding: 20px;
}

.landing-title {
	text-align: center;
	color: #2c3e50;
	font-size: 32px;
	font-weight: 700;
	margin: 20px 0 10px 0;
	font-family: 'Inter', 'SF Pro Display', 'Segoe UI Variable', system-ui, sans-serif;
	letter-spacing: -0.02em;
}

.welcome-message {
	text-align: center;
	color: #666;
	font-size: 16px;
	margin-bottom: 40px;
	font-family: 'Inter', 'SF Pro Text', 'Segoe UI Variable', system-ui, sans-serif;
}

.two-column-layout {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 20px;
	width: 100%;
	max-width: 920px;
	margin: 0 auto;
}

.panel {
	background: #f8f9fa;
	border: 2px solid #dee2e6;
	border-radius: 8px;
	padding: 20px;
	margin-bottom: 30px;
	box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.panel legend {
	font-family: 'Inter', 'SF Pro Display', 'Segoe UI Variable', system-ui, sans-serif;
	font-size: 18px;
	font-weight: 600;
	color: #2c3e50;
	background: #ffffff;
	padding: 5px 15px;
	border: 2px solid #dee2e6;
	border-radius: 6px;
	margin-left: 20px;
	text-align: left;
	letter-spacing: -0.01em;
}

.form-group {
	margin-bottom: 20px;
}

.form-group label {
	display: block;
	margin-bottom: 8px;
	font-weight: 500;
	color: #2c3e50;
	font-size: 14px;
	font-family: 'Inter', 'SF Pro Text', 'Segoe UI Variable', system-ui, sans-serif;
}

.form-group input[type="text"],
.form-group input[type="password"] {
	width: 100%;
	padding: 12px 16px;
	font-size: 16px;
	font-family: 'Inter', 'SF Pro Text', 'Segoe UI Variable', system-ui, sans-serif;
	border: 2px solid #dee2e6;
	border-radius: 6px;
	background-color: #ffffff;
	color: #2c3e50;
	transition: border-color 0.3s ease;
	box-sizing: border-box;
}

.form-group input[type="text"]:focus,
.form-group input[type="password"]:focus {
	outline: none;
	border-color: #4A3F4D;
	box-shadow: 0 0 0 3px rgba(74, 63, 77, 0.1);
}

.login-button {
	width: 100%;
	padding: 12px 20px;
	font-size: 16px;
	font-weight: 600;
	font-family: 'Inter', 'SF Pro Text', 'Segoe UI Variable', system-ui, sans-serif;
	background: linear-gradient(135deg, #77E8D2 0%, #005a9e 100%);
	color: #ffffff;
	border: none;
	border-radius: 6px;
	cursor: pointer;
	transition: all 0.3s ease;
	margin: 10px 0;
	letter-spacing: -0.01em;
}

.login-button:hover {
	background: linear-gradient(135deg, #106ebe 0%, #005a9e 100%);
	transform: translateY(-1px);
	box-shadow: 0 4px 12px rgba(74, 63, 77, 0.3);
}

.microsoft-button {
	width: 100%;
	padding: 12px 20px;
	font-size: 16px;
	font-weight: 600;
	font-family: 'Inter', 'SF Pro Text', 'Segoe UI Variable', system-ui, sans-serif;
	background: linear-gradient(135deg, #005a9e 0%, #77E8D2 100%);
	color: #ffffff;
	border: none;
	border-radius: 6px;
	cursor: pointer;
	transition: all 0.3s ease;
	margin: 10px 0;
	display: flex;
	align-items: center;
	justify-content: center;
	letter-spacing: -0.01em;
}

.microsoft-button:hover {
	background: linear-gradient(135deg, #106ebe 0%, #005a9e 100%);
	transform: translateY(-1px);
	box-shadow: 0 4px 12px rgba(0, 120, 212, 0.3);
}

.consumer-link {
	display: block;
	text-align: center;
	margin: 15px 0;
	padding: 10px;
	background: #f8f9fa;
	border-radius: 6px;
	color: #4A3F4D;
	text-decoration: none;
	transition: background 0.3s ease;
	font-family: 'Inter', 'SF Pro Text', 'Segoe UI Variable', system-ui, sans-serif;
	font-weight: 500;
}

.consumer-link:hover {
	background: #e9ecef;
	color: #4A3F4D;
	text-decoration: none;
}

.help-content {
	line-height: 1.6;
	color: #2c3e50;
	text-align: left;
	font-family: 'Inter', 'SF Pro Text', 'Segoe UI Variable', system-ui, sans-serif;
}

.help-content ul {
	padding-left: 20px;
	margin: 10px 0;
	text-align: left;
}

.help-content li {
	margin: 5px 0;
	text-align: left;
}

.help-content p {
	text-align: left;
	margin: 10px 0;
}

.help-content a {
	color: #4A3F4D;
	text-decoration: none;
}

.help-content a:hover {
	color: #3a2f3d;
	text-decoration: underline;
}

@media (max-width: 768px) {
	.two-column-layout {
		grid-template-columns: 1fr;
		gap: 20px;
	}
}
