/* ORIGINAL */

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at top, rgba(255,0,0,.16), transparent 34%),
    linear-gradient(180deg, #050505, #000);
  color: white;
  font-family: Arial, Helvetica, sans-serif;
}

.login-shell {
  width: min(940px, calc(100% - 28px));
  margin: 0 auto;
  padding: 28px 0;
}

.back-link {
  display: inline-flex;
  margin-bottom: 18px;
  color: rgba(255,255,255,.74);
  text-decoration: none;
  font-size: 13px;
  font-weight: 800;
}

.section {
  margin-top: 10px;
}

.card {
  border: 1px solid rgba(255,255,255,.1);
  background: rgba(10,10,10,.86);
  border-radius: 24px;
  padding: 24px;
  box-shadow: 0 22px 60px rgba(0,0,0,.55);
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 9px;
  color: rgba(255,255,255,.65);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .12em;
}

.live-dot {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: red;
  box-shadow: 0 0 18px red;
}

.section-title {
  margin: 14px 0 8px;
  font-size: clamp(32px, 6vw, 58px);
  line-height: .95;
}

.card-subtitle {
  color: rgba(255,255,255,.7);
  line-height: 1.5;
}

.login-grid {
  display: grid;
  gap: 12px;
  max-width: 460px;
  margin-top: 18px;
}

.checkin-input {
  width: 100%;
  padding: 13px 14px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.06);
  color: white;
  outline: none;
}

.checkin-input::placeholder {
  color: rgba(255,255,255,.45);
}

.login-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.checkin-button {
  border: 1px solid rgba(255,0,0,.35);
  background: rgba(255,0,0,.16);
  color: white;
  border-radius: 999px;
  padding: 11px 15px;
  font-size: 13px;
  font-weight: 900;
  cursor: pointer;
}

.checkin-button.secondary {
  background: rgba(255,255,255,.06);
  border-color: rgba(255,255,255,.14);
}

.status-box {
  padding: 12px 14px;
  border-radius: 14px;
  font-size: 13px;
  font-weight: 800;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.06);
}

.status-box.success {
  border-color: rgba(0,255,128,.35);
}

.status-box.error {
  border-color: rgba(255,0,0,.45);
}

.status-box.loading {
  color: rgba(255,255,255,.72);
}
