/* Supplier Form CSS */
body {
	margin: 0;
	font-family: Arial, sans-serif;
}
header {
	display: flex;
	justify-content: flex-end;
	padding: 15px 40px;
	background: #fff;
}
header a {
	text-decoration: none;
	margin-left: 20px;
	font-size: 14px;
	color: #333;
}
header .login-btn {
	background: #ff6600;
	color: #fff;
	padding: 8px 16px;
	border-radius: 5px;
	font-weight: bold;
}
.hero {
	position: relative;
	background: url('../../assets/images/supplier/hero-bg.jpg') no-repeat center center/cover;
	min-height: 100vh;
	display: flex;
	align-items: center;
	padding: 60px;
}
.form-container {
	max-width: 400px;
	background: rgba(255, 255, 255, 0.95);
	padding: 25px;
	border-radius: 10px;
	box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}
.form-container h1 {
	font-size: 28px;
	margin-bottom: 15px;
	line-height: 1.2;
}
.form-container h1 strong {
	color: #ff6600;
}
.form-container p {
	font-size: 15px;
	margin-bottom: 20px;
	color: #444;
	line-height: 1.5;
}
form label {
	display: block;
	font-size: 14px;
	margin-bottom: 5px;
	font-weight: bold;
}
form input,
form textarea,
form select {
	width: 100%;
	padding: 10px;
	margin-bottom: 15px;
	border: 1px solid #ccc;
	border-radius: 6px;
	font-size: 14px;
}
.radio-group {
	display: flex;
	gap: 20px;
	align-items: center;
	margin-bottom: 15px;
}
.radio-group label {
	display: flex;
	align-items: center;
	font-weight: normal;
	font-size: 14px;
	margin: 0;
	cursor: pointer;
}
.radio-group input[type="radio"] {
	margin-right: 6px;
}
button {
	width: 100%;
	padding: 12px;
	border: none;
	background: #F55905;
	color: #fff;
	font-size: 16px;
	border-radius: 6px;
	cursor: pointer;
}
button:hover {
	background: #c04002;
}
@media (max-width: 768px) {
  .hero {
	padding: 20px;
	justify-content: center;
  }
  .form-container {
	max-width: 100%;
  }
}