/* Seller Login Page Specific Styles */
body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.simple-header {
  background: #fff;
  border-bottom: 2px solid var(--bw-line-strong);
  padding: 20px 0;
}

.simple-header .wrap {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.simple-header .brand {
  font-size: 24px;
  font-weight: 900;
  letter-spacing: 0.2px;
}

.simple-header .nav-links {
  display: flex;
  gap: 24px;
  font-size: 14px;
}

.simple-header .nav-links a {
  text-decoration: underline;
  color: var(--bw-sub);
}

.simple-header .nav-links a:hover {
  color: var(--bw-ink);
}

.login-page {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px 20px;
}

.login-container {
  max-width: 540px;
  width: 100%;
}

.login-header {
  text-align: center;
  margin-bottom: 32px;
}

.login-header h1 {
  margin: 0 0 12px;
  font-size: 42px;
  font-weight: 900;
  letter-spacing: -0.5px;
}

.login-header p {
  margin: 0;
  color: var(--bw-sub);
  font-size: 16px;
}

.login-card {
  background: var(--bw-card);
  border: 2px solid var(--bw-line-strong);
  border-radius: 22px;
  padding: 48px;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.08);
}

.seller-badge {
  background: #2a2a2a;
  color: #fff;
  padding: 8px 18px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
  display: inline-block;
  margin-bottom: 28px;
  letter-spacing: 0.8px;
}

.login-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-field label {
  font-weight: 900;
  font-size: 14px;
  letter-spacing: 0.2px;
}

.form-field input {
  border: 2px solid var(--bw-line-strong);
  border-radius: 16px;
  padding: 14px 16px;
  background: #fff;
  outline: none;
  color: var(--bw-ink);
  font-size: 15px;
  transition: 0.2s ease;
}

.form-field input:focus {
  box-shadow: 0 0 0 4px rgba(0, 0, 0, 0.08);
  border-color: #000;
}

.form-options {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  margin-top: 4px;
}

.checkbox-field {
  display: flex;
  align-items: center;
  gap: 8px;
}

.checkbox-field input[type="checkbox"] {
  width: 18px;
  height: 18px;
  cursor: pointer;
}

.checkbox-field label {
  cursor: pointer;
  font-weight: 600;
}

.forgot-link {
  color: #2a2a2a;
  text-decoration: underline;
  cursor: pointer;
  font-weight: 600;
}

.forgot-link:hover {
  color: #000;
}

.btn-bw {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 900;
  letter-spacing: 0.2px;
  border: 2px solid #000;
  cursor: pointer;
  transition: transform 0.06s ease, filter 0.15s ease;
  font-size: 16px;
  width: 100%;
  margin-top: 24px;
}

.btn-primary {
  background: #000;
  color: #fff;
}

.btn-ghost {
  background: #fff;
  color: #000;
}

.btn-bw:active {
  transform: translateY(1px);
}

.btn-bw:hover {
  filter: brightness(0.96);
}

.register-prompt {
  text-align: center;
  margin-top: 28px;
  font-size: 15px;
  color: var(--bw-sub);
}

.register-prompt a {
  color: #2a2a2a;
  font-weight: 900;
  text-decoration: underline;
}

.register-prompt a:hover {
  color: #000;
}

.back-to-customer {
  text-align: center;
  margin-top: 24px;
  padding-top: 24px;
  border-top: 2px solid var(--bw-line-strong);
}

.back-to-customer a {
  color: var(--bw-sub);
  font-size: 14px;
  font-weight: 600;
  text-decoration: underline;
}

.back-to-customer a:hover {
  color: #000;
}

.simple-footer {
  background: #fff;
  border-top: 2px solid var(--bw-line-strong);
  padding: 24px 0;
  margin-top: auto;
}

.simple-footer .wrap {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
}

.simple-footer p {
  margin: 0;
  color: var(--bw-sub);
  font-size: 14px;
}

.simple-footer .links {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-top: 12px;
  font-size: 13px;
}

.simple-footer .links a {
  color: var(--bw-sub);
  text-decoration: underline;
}

.simple-footer .links a:hover {
  color: var(--bw-ink);
}
