.staff-auth-page {
  background: #f4f6f8;
  padding: 80px 20px;
  min-height: 60vh;
}
.staff-auth-card {
  max-width: 560px;
  margin: 0 auto;
  background: #fff;
  padding: 40px;
  border-radius: 8px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}
.staff-auth-kicker {
  color: #37bc9b;
  font-weight: 700;
  letter-spacing: 0.12em;
}
.staff-auth-card h1 {
  margin: 8px 0 16px;
}
.staff-auth-card form {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}
.staff-auth-card label {
  font-weight: 700;
}
.staff-auth-card input {
  box-sizing: border-box;
  width: 100%;
  padding: 13px;
  border: 1px solid #aaa;
  border-radius: 4px;
  font-size: 16px;
}
.staff-auth-card button {
  margin-top: 12px;
  padding: 14px;
  border: 0;
  border-radius: 4px;
  background: #37bc9b;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
}
.staff-auth-error {
  padding: 12px;
  background: #fff1f1;
  border-left: 4px solid #c33;
  color: #8b1d1d;
}
.staff-auth-privacy {
  margin-top: 22px;
  font-size: 13px;
  color: #666;
}
@media (max-width: 767px) {
  .staff-auth-page {
    padding: 40px 15px;
  }
  .staff-auth-card {
    padding: 26px 20px;
  }
}

.staff-portal-logout {
  display: flex;
  justify-content: flex-end;
  margin-top: -80px !important;
  margin-bottom: 70px !important;
}

.staff-portal-logout__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 250px;
  padding: 13px 24px;
  border: 1px solid #555;
  border-radius: 4px;
  background: #fff;
  color: #333;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
  text-decoration: none;
  transition:
    background-color 0.2s ease,
    border-color 0.2s ease,
    color 0.2s ease;
}

.staff-portal-logout__button::before {
  content: "";
  width: 8px;
  height: 8px;
  margin-right: 11px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(135deg);
}

.staff-portal-logout__button:hover {
  border-color: #37bc9b;
  background: #37bc9b;
  color: #fff;
}

.staff-portal-logout__button:focus-visible {
  outline: 3px solid rgba(55, 188, 155, 0.35);
  outline-offset: 3px;
}

@media (max-width: 767px) {
  .staff-portal-logout {
    justify-content: center;
    margin-top: 0px !important;
    margin-bottom: -50px !important;
  }

  .staff-portal-logout__button {
    width: 93%;
    min-width: 0;
  }
}
