/* ─── Reset & Base ───────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Inter:wght@400;500;600;700;800;900&display=swap');

:root {
  --blue:        #0047CC;
  --blue-dark:   #003499;
  --blue-light:  #3370e8;
  --blue-bg:     #eef3ff;
  --red:         #D93025;
  --red-bg:      #fdecea;
  --gold:        #E8A900;
  --gold-light:  #FFF3CC;
  --gold-dark:   #b88400;
  --white:       #ffffff;
  --gray-50:     #fafbfd;
  --gray-100:    #f2f4f8;
  --gray-200:    #e4e7f0;
  --gray-300:    #c4c9da;
  --gray-500:    #737b99;
  --gray-600:    #4e566e;
  --gray-800:    #1c2038;

  --radius:    14px;
  --radius-sm: 9px;
  --shadow:    0 4px 24px rgba(0,20,80,.10);
  --shadow-sm: 0 1px 6px rgba(0,20,80,.07);
  --shadow-md: 0 6px 20px rgba(0,20,80,.12);
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--gray-100);
  color: var(--gray-800);
  min-height: 100vh;
}

.admin-body { background: #f0f2f8; }

/* ─── Screens ────────────────────────────────────────────────────────── */
.screen { width: 100%; }
.hidden { display: none !important; }

/* ─── Login screen ───────────────────────────────────────────────────── */
#auth-screen, #admin-login {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  background:
    radial-gradient(ellipse 70% 50% at 10% 100%, rgba(0,71,204,.12) 0%, transparent 60%),
    radial-gradient(ellipse 60% 40% at 90% 0%, rgba(217,48,37,.08) 0%, transparent 55%),
    linear-gradient(160deg, #dce8ff 0%, #f0f4ff 45%, #fff5f0 100%);
  position: relative;
}

.login-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2.25rem 2.5rem 2.5rem;
  width: 100%;
  max-width: 420px;
  text-align: center;
  box-shadow: 0 12px 40px rgba(0,20,80,.13), 0 0 0 1px rgba(0,40,160,.06);
  position: relative;
}

/* top accent bar */
.login-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  border-radius: var(--radius) var(--radius) 0 0;
  background: linear-gradient(90deg, var(--blue) 0%, var(--red) 50%, var(--gold) 100%);
}

.logo { font-size: 2.6rem; margin-bottom: .5rem; line-height: 1; }

.login-card h1 {
  font-family: 'Bebas Neue', 'Inter', sans-serif;
  font-size: 2.5rem;
  font-weight: 400;
  letter-spacing: .07em;
  line-height: 1;
  color: var(--blue);
  margin-bottom: .3rem;
}
.login-card h1 .te { color: var(--red); }
.te { color: var(--red); }

.subtitle { color: var(--gray-500); margin-bottom: 1.5rem; font-size: .88rem; }
.input-group { display: flex; gap: .5rem; margin-bottom: 1rem; }
.input-group input { flex: 1; }
.login-hint { color: var(--gray-500); font-size: .8rem; }

/* ─── Inputs ─────────────────────────────────────────────────────────── */
input[type="text"], input[type="password"], input[type="email"],
input[type="datetime-local"], input[type="number"] {
  width: 100%;
  padding: .72rem 1rem;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-size: .95rem;
  font-family: inherit;
  color: var(--gray-800);
  background: var(--gray-50);
  transition: border-color .18s, box-shadow .18s;
  outline: none;
}
input:focus {
  border-color: var(--blue);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(0,71,204,.1);
}

/* ─── Buttons ────────────────────────────────────────────────────────── */
.btn {
  padding: .72rem 1.5rem;
  border-radius: var(--radius-sm);
  font-size: .93rem;
  font-weight: 700;
  cursor: pointer;
  border: none;
  transition: all .15s;
  white-space: nowrap;
  letter-spacing: .02em;
}
.btn-primary {
  background: var(--blue);
  color: var(--white);
  box-shadow: 0 3px 12px rgba(0,71,204,.28);
}
.btn-primary:hover { background: var(--blue-dark); box-shadow: 0 4px 16px rgba(0,71,204,.38); transform: translateY(-1px); }
.btn-outline {
  background: var(--white);
  border: 1.5px solid var(--gray-300);
  color: var(--gray-600);
}
.btn-outline:hover { border-color: var(--blue); color: var(--blue); background: var(--blue-bg); }
.btn-danger { background: var(--red); color: white; }
.btn-danger:hover { opacity: .88; }
.btn-gold { background: var(--gold); color: white; }
.btn-sm { padding: .42rem .85rem; font-size: .82rem; }

/* ─── Header ─────────────────────────────────────────────────────────── */
.app-header {
  background: var(--white);
  color: var(--gray-800);
  padding: .7rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 1px 0 var(--gray-200), var(--shadow-sm);
  border-bottom: 3px solid var(--blue);
}

.admin-header { border-bottom-color: var(--blue-dark); }

.header-left { display: flex; align-items: center; gap: .7rem; }
.header-logo { font-size: 1.4rem; }
.header-title {
  font-family: 'Bebas Neue', 'Inter', sans-serif;
  font-size: 1.3rem;
  font-weight: 400;
  letter-spacing: .08em;
  color: var(--blue);
}
.header-title .te { color: var(--red); }
.header-right { display: flex; align-items: center; gap: .75rem; }

.user-badge {
  background: var(--blue-bg);
  border: 1px solid rgba(0,71,204,.2);
  color: var(--blue);
  padding: .28rem .8rem;
  border-radius: 20px;
  font-size: .82rem;
  font-weight: 700;
}

/* ─── Prize banner ───────────────────────────────────────────────────── */
.prize-banner {
  background: linear-gradient(90deg, var(--blue) 0%, var(--blue-light) 100%);
  color: white;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .65rem 1.25rem;
  gap: 1rem;
  flex-wrap: wrap;
}

.prize-left { display: flex; align-items: center; gap: .7rem; }
.prize-icon { font-size: 1.5rem; line-height: 1; }
.prize-label {
  font-size: .62rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  opacity: .75;
}
.prize-amount {
  font-family: 'Bebas Neue', 'Inter', sans-serif;
  font-size: 1.65rem;
  font-weight: 400;
  color: var(--gold-light);
  line-height: 1;
  letter-spacing: .04em;
}
.prize-right { text-align: right; }
.prize-detail { font-size: .78rem; font-weight: 600; opacity: .85; }
.prize-note { font-size: .7rem; opacity: .55; margin-top: .15rem; }

/* ─── Main nav tabs ──────────────────────────────────────────────────── */
.tab-nav {
  display: flex;
  background: var(--white);
  border-bottom: 1.5px solid var(--gray-200);
  padding: 0 1rem;
  gap: .25rem;
  overflow-x: auto;
}

.tab-btn {
  padding: .85rem 1.25rem;
  border: none;
  background: none;
  font-size: .92rem;
  font-weight: 700;
  color: var(--gray-500);
  cursor: pointer;
  border-bottom: 3px solid transparent;
  margin-bottom: -1.5px;
  white-space: nowrap;
  transition: all .15s;
}
.tab-btn.active { color: var(--blue); border-bottom-color: var(--blue); }
.tab-btn:hover:not(.active) { color: var(--gray-800); }

.tab-content { padding: 1rem; max-width: 900px; margin: 0 auto; }

/* ─── Cards ──────────────────────────────────────────────────────────── */
.card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.25rem;
  box-shadow: var(--shadow-sm);
  margin-bottom: 1rem;
}

/* ─── Group tabs bar ─────────────────────────────────────────────────── */
.group-tabs-bar {
  display: flex;
  gap: .4rem;
  padding: .6rem 1rem;
  overflow-x: auto;
  background: var(--white);
  border-bottom: 1.5px solid var(--gray-200);
  scrollbar-width: none;
}
.group-tabs-bar::-webkit-scrollbar { display: none; }

.group-tab-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .2rem;
  padding: .42rem .65rem;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-sm);
  background: var(--white);
  cursor: pointer;
  transition: all .15s;
  flex-shrink: 0;
  min-width: 3.5rem;
}
.group-tab-btn:hover { border-color: var(--blue); background: var(--blue-bg); }
.group-tab-btn.active {
  border-color: var(--blue);
  background: var(--blue);
}
.group-tab-btn.active .gtab-label { color: white; }
.group-tab-btn.active .gtab-badge { background: rgba(255,255,255,.25); color: white; }

.gtab-label {
  font-size: .72rem;
  font-weight: 800;
  color: var(--gray-600);
  white-space: nowrap;
  letter-spacing: .04em;
}
.gtab-badge {
  font-size: .62rem;
  font-weight: 700;
  background: var(--gray-100);
  color: var(--gray-500);
  padding: .1rem .35rem;
  border-radius: 10px;
  white-space: nowrap;
}
.gtab-badge.done { background: var(--blue-bg); color: var(--blue); }
.group-tab-btn.active .gtab-badge.done { background: var(--gold); color: white; }

/* ─── Group header block ─────────────────────────────────────────────── */
.group-header-block { margin-bottom: .75rem; padding: .5rem .25rem .25rem; }
.group-header-title {
  font-size: .67rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gray-500);
  margin-bottom: .45rem;
}
.group-teams-list { display: flex; flex-wrap: wrap; gap: .3rem; }
.team-chip {
  font-size: .72rem;
  font-weight: 600;
  background: var(--blue-bg);
  color: var(--blue-dark);
  padding: .2rem .6rem;
  border-radius: 20px;
}

/* ─── Group section ──────────────────────────────────────────────────── */
.group-section { margin-bottom: 1.5rem; }
.group-title {
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gray-500);
  margin-bottom: .5rem;
  padding: 0 .25rem;
}

/* ─── Match Card ─────────────────────────────────────────────────────── */
.match-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  box-shadow: var(--shadow-sm);
  margin-bottom: .65rem;
  border-left: 3px solid var(--gray-200);
  transition: border-color .15s, box-shadow .15s;
}
.match-card:hover { box-shadow: var(--shadow); }
.match-card.locked { opacity: .75; }
.match-card.correct { border-left-color: var(--blue); }
.match-card.wrong { border-left-color: var(--red); }

.match-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: .72rem;
  flex-wrap: wrap;
  gap: .5rem;
}
.match-teams { font-size: 1rem; font-weight: 800; color: var(--gray-800); }
.match-vs { color: var(--gray-300); font-weight: 400; margin: 0 .4rem; }
.match-meta { display: flex; align-items: center; gap: .7rem; flex-wrap: wrap; }
.match-date-label { font-size: .78rem; color: var(--gray-500); }

.countdown {
  font-size: .78rem;
  font-weight: 700;
  color: var(--blue);
  background: var(--blue-bg);
  padding: .2rem .6rem;
  border-radius: 20px;
}
.countdown.urgent { color: var(--red); background: var(--red-bg); }
.countdown.expired { color: var(--gray-500); background: var(--gray-100); }

.match-result-badge {
  font-size: .78rem;
  font-weight: 700;
  color: var(--white);
  background: var(--blue);
  padding: .2rem .65rem;
  border-radius: 20px;
}

/* ─── Result section ─────────────────────────────────────────────────── */
.result-section {
  margin-top: .5rem;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1.5px solid var(--gray-200);
}

.result-scoreboard {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--blue);
  color: white;
  padding: .65rem 1rem;
  gap: .5rem;
}
.result-team { font-size: .8rem; font-weight: 700; flex: 1; }
.result-team.home { text-align: left; }
.result-team.away { text-align: right; }
.result-score {
  font-family: 'Bebas Neue', 'Inter', sans-serif;
  font-size: 1.55rem;
  font-weight: 400;
  letter-spacing: .08em;
  color: var(--gold-light);
  padding: 0 .75rem;
  white-space: nowrap;
}

.result-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: .5rem;
  padding: .55rem .85rem;
  background: var(--gray-50);
}

.pick-detail { display: flex; align-items: center; gap: .35rem; font-size: .8rem; }
.pick-detail-label { color: var(--gray-500); font-weight: 600; }
.pick-detail-val { font-weight: 700; color: var(--gray-800); }
.pick-detail-val.no-pick { color: var(--gray-300); font-weight: 400; font-style: italic; }

.outcome-badge {
  font-size: .78rem;
  font-weight: 800;
  padding: .2rem .72rem;
  border-radius: 20px;
  white-space: nowrap;
}
.outcome-correct { background: var(--blue-bg); color: var(--blue); }
.outcome-wrong   { background: var(--red-bg); color: var(--red); }
.outcome-none    { background: var(--gray-100); color: var(--gray-500); }

/* ─── Group result summary ───────────────────────────────────────────── */
.group-result-summary { display: flex; gap: .5rem; flex-wrap: wrap; margin-top: .55rem; }
.gs-item { font-size: .72rem; font-weight: 700; padding: .2rem .6rem; border-radius: 20px; }
.gs-item.correct { background: var(--blue-bg); color: var(--blue); }
.gs-item.wrong   { background: var(--red-bg); color: var(--red); }
.gs-item.pending { background: var(--gray-100); color: var(--gray-500); }

/* ─── Pick buttons ───────────────────────────────────────────────────── */
.pick-group { display: flex; gap: .5rem; }

.pick-btn {
  flex: 1;
  padding: .6rem .5rem;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-sm);
  background: var(--gray-50);
  font-weight: 800;
  font-size: .9rem;
  cursor: pointer;
  transition: all .15s;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .15rem;
  color: var(--gray-600);
}
.pick-btn .pick-label { font-size: .63rem; font-weight: 600; opacity: .65; text-transform: uppercase; letter-spacing: .06em; }
.pick-btn:hover:not(:disabled) { border-color: var(--blue); color: var(--blue); background: var(--blue-bg); }
.pick-btn.selected {
  border-color: var(--blue);
  background: var(--blue);
  color: white;
  box-shadow: 0 2px 10px rgba(0,71,204,.28);
}
.pick-btn.selected .pick-label { opacity: .8; }
.pick-btn:disabled { cursor: not-allowed; opacity: .5; }
.pick-btn.correct-pick { border-color: var(--blue); background: var(--blue-bg); color: var(--blue); }
.pick-btn.wrong-pick { border-color: var(--red); background: var(--red-bg); color: var(--red); }

/* ─── Standings ──────────────────────────────────────────────────────── */
.standings-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}
.standings-header h2 { font-size: 1.1rem; font-weight: 800; }

.standings-prize-note {
  text-align: center;
  font-size: .88rem;
  color: var(--gray-500);
  margin-bottom: .75rem;
}
.standings-prize-note strong { color: var(--blue); }

.standings-table {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1.5px solid var(--gray-200);
}

.standings-row {
  display: grid;
  grid-template-columns: 2.5rem 1fr auto auto;
  align-items: center;
  padding: .85rem 1.25rem;
  border-bottom: 1px solid var(--gray-200);
  gap: .75rem;
}
.standings-row:last-child { border-bottom: none; }
.standings-row.header {
  background: var(--gray-100);
  font-size: .72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--gray-500);
  padding: .6rem 1.25rem;
}
.standings-row.me { background: var(--blue-bg); }
.standings-row.leader {
  background: linear-gradient(90deg, #fffce8, #fffef5);
  border-left: 3px solid var(--gold);
}

.rank { font-size: 1.05rem; font-weight: 800; color: var(--gray-400); text-align: center; }
.rank.gold { color: var(--gold-dark); }
.rank.silver { color: #9a9a9a; }
.rank.bronze { color: #b07030; }

.prize-tag {
  display: inline-block;
  font-size: .68rem;
  font-weight: 800;
  background: var(--gold-light);
  color: var(--gold-dark);
  padding: .14rem .5rem;
  border-radius: 20px;
  margin-left: .4rem;
  vertical-align: middle;
}
.you-tag { font-size: .7rem; color: var(--blue); margin-left: .3rem; }

.participant-name { font-weight: 700; }
.points-cell { font-size: 1.2rem; font-weight: 900; color: var(--blue); text-align: right; min-width: 2rem; }
.played-cell { font-size: .85rem; color: var(--gray-500); text-align: right; min-width: 3.5rem; }

/* ─── Auth tabs ──────────────────────────────────────────────────────── */
.auth-tabs {
  display: flex;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-sm);
  overflow: hidden;
  margin-bottom: 1.25rem;
}
.auth-tab {
  flex: 1;
  padding: .6rem;
  border: none;
  background: none;
  font-size: .88rem;
  font-weight: 700;
  color: var(--gray-500);
  cursor: pointer;
  transition: all .15s;
}
.auth-tab.active { background: var(--blue); color: white; }

.form-group-simple { margin-bottom: .75rem; }
.btn-full { width: 100%; }

.btn-link {
  background: none;
  border: none;
  color: var(--blue);
  font-size: .85rem;
  font-weight: 600;
  cursor: pointer;
  padding: 0;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.status-banner {
  border-radius: var(--radius-sm);
  padding: 1rem;
  display: flex;
  gap: .75rem;
  align-items: flex-start;
  text-align: left;
}
.status-banner.pending { background: var(--gold-light); border: 1.5px solid var(--gold); }
.status-icon { font-size: 1.4rem; flex-shrink: 0; }
.status-banner p { margin: 0; font-size: .88rem; line-height: 1.5; }

/* ─── Toast ──────────────────────────────────────────────────────────── */
.toast {
  position: fixed;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gray-800);
  color: white;
  padding: .72rem 1.5rem;
  border-radius: 30px;
  font-size: .9rem;
  font-weight: 700;
  z-index: 9999;
  box-shadow: var(--shadow-md);
  animation: fadeIn .2s ease;
  white-space: nowrap;
}
.toast.success { background: var(--blue); }
.toast.error { background: var(--red); }

@keyframes fadeIn { from { opacity: 0; transform: translateX(-50%) translateY(10px); } }

/* ─── Loading ────────────────────────────────────────────────────────── */
.loading-msg { text-align: center; padding: 3rem; color: var(--gray-500); }
.empty-msg { text-align: center; padding: 2rem; color: var(--gray-500); font-size: .95rem; }
.hint-text { color: var(--gray-500); font-size: .88rem; margin-bottom: 1rem; }

/* ─── Admin ──────────────────────────────────────────────────────────── */
.section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}
.section-header h2 { font-size: 1.1rem; font-weight: 800; }

.form-card { border: 1.5px solid var(--blue); margin-bottom: 1.5rem; }
.form-card h3 { margin-bottom: 1rem; color: var(--blue); }

.form-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1rem;
  margin-bottom: 1rem;
}
.form-group label {
  display: block;
  font-size: .78rem;
  font-weight: 700;
  color: var(--gray-500);
  margin-bottom: .35rem;
  text-transform: uppercase;
  letter-spacing: .06em;
}
.form-actions { display: flex; gap: .75rem; }

.admin-match-row {
  background: var(--white);
  border-radius: var(--radius-sm);
  padding: .9rem 1.1rem;
  margin-bottom: .5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
}
.admin-match-info { flex: 1; min-width: 0; }
.admin-match-name { font-weight: 700; margin-bottom: .2rem; }
.admin-match-meta { font-size: .8rem; color: var(--gray-500); }
.admin-match-actions { display: flex; gap: .5rem; }

.result-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.25rem;
  margin-bottom: 1rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
}
.result-match-name { font-weight: 700; margin-bottom: .75rem; }
.result-inputs { display: flex; align-items: center; gap: .75rem; margin-bottom: .75rem; flex-wrap: wrap; }
.score-box { display: flex; align-items: center; gap: .5rem; }
.score-box input { width: 4rem; text-align: center; font-size: 1.2rem; font-weight: 700; }
.score-sep { font-size: 1.5rem; font-weight: 300; color: var(--gray-300); }

.participants-table {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
}
.participant-row {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  padding: .8rem 1.25rem;
  border-bottom: 1px solid var(--gray-200);
  gap: 1rem;
}
.participant-row:last-child { border-bottom: none; }
.participant-row.header {
  background: var(--gray-100);
  font-size: .72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--gray-500);
}
.participant-row .pname { font-weight: 700; }
.participant-row .pdate { font-size: .78rem; color: var(--gray-500); }

.sync-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: .4rem 0;
  border-bottom: 1px solid var(--gray-200);
  flex-wrap: wrap;
}
.sync-row:last-child { border-bottom: none; }
.sync-label { font-size: .78rem; font-weight: 800; text-transform: uppercase; letter-spacing: .06em; color: var(--gray-500); }
.sync-value { font-size: .9rem; text-align: right; }
.sync-value.ok { color: var(--blue); font-weight: 700; }
.sync-value.warn { color: var(--red); font-weight: 700; }

.participant-approval-row {
  background: var(--white);
  border-radius: var(--radius-sm);
  padding: .9rem 1.1rem;
  margin-bottom: .5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  border-left: 3px solid var(--gold);
}
.approval-actions { display: flex; gap: .5rem; flex-shrink: 0; }

/* ─── Responsive ─────────────────────────────────────────────────────── */
@media (max-width: 600px) {
  .match-top { flex-direction: column; align-items: flex-start; }
  .pick-btn { padding: .5rem .25rem; font-size: .8rem; }
  .standings-row { grid-template-columns: 2rem 1fr auto auto; padding: .75rem 1rem; }
  .login-card { padding: 1.75rem 1.5rem 2rem; }
}
