/* Login Page Specific Styles */
.login-page {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: calc(100vh - 400px);
  padding: 48px 20px;
}

.login-container {
  max-width: 480px;
  width: 100%;
  padding: 20px;
}

.login-card {
  background: var(--bw-card);
  border: 2px solid var(--bw-line-strong);
  border-radius: 24px;
  padding: 40px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}

.logo-text {
  font-size: 36px;
  font-weight: 900;
  letter-spacing: 0.3px;
  text-align: center;
  margin-bottom: 32px;
}

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

.login-header h1 {
  margin: 0 0 8px;
  font-size: 32px;
  font-weight: 900;
}

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

.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: 15px;
  letter-spacing: 0.2px;
}

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

.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;
}

.form-options label {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}

.form-options a {
  color: var(--bw-ink);
  text-decoration: underline;
}

.form-options a:hover {
  color: #000;
}

.btn-login {
  width: 100%;
  min-height: 56px;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 900;
  letter-spacing: 0.2px;
  border: 2px solid #000;
  cursor: pointer;
  background: #000;
  color: #fff;
  font-size: 16px;
  transition: transform 0.06s ease, filter 0.15s ease;
}

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

.btn-login:hover {
  filter: brightness(1.1);
}

.divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 24px 0;
  color: var(--bw-muted);
  font-size: 14px;
}

.divider::before,
.divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--bw-line-strong);
}

.signup-link {
  text-align: center;
  margin-top: 24px;
  font-size: 15px;
  color: var(--bw-sub);
}

.signup-link a {
  color: var(--bw-ink);
  font-weight: 900;
  text-decoration: underline;
}

.signup-link a:hover {
  color: #000;
}

.back-home {
  text-align: center;
  margin-top: 16px;
}

.back-home a {
  color: var(--bw-muted);
  font-size: 14px;
  text-decoration: underline;
}

.back-home a:hover {
  color: var(--bw-ink);
}

.seller-portal {
  text-align: center;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 2px solid var(--bw-line-strong);
}

.seller-portal a {
  color: #2a2a2a;
  font-size: 14px;
  font-weight: 700;
  text-decoration: underline;
}

.seller-portal a:hover {
  color: #000;
}
