:root {
  --ink: #11202e;
  --navy: #061b45;
  --royal: #126ee4;
  --muted: #607080;
  --line: #d9e2ea;
  --paper: #f6f8fa;
  --white: #ffffff;
  --brand: #006b7f;
  --brand-dark: #024a5a;
  --accent: #c4862f;
  --success: #0f7a5a;
  --shadow: 0 24px 70px rgba(17, 32, 46, 0.13);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
}

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  align-items: center;
  background: rgba(255, 255, 255, 0.97);
  border-bottom: 1px solid var(--line);
  display: grid;
  gap: 1.2rem;
  grid-template-columns: minmax(270px, 370px) 1fr auto;
  min-height: 104px;
  padding: 0 5vw;
  position: sticky;
  top: 0;
  z-index: 10;
}

.brand {
  align-items: center;
  display: flex;
  min-width: 0;
}

.header-logo {
  display: block;
  filter: drop-shadow(0 10px 22px rgba(6, 27, 69, 0.08));
  height: 74px;
  object-fit: contain;
  object-position: left center;
  width: min(100%, 430px);
}

.header-journey {
  align-items: center;
  display: grid;
  gap: 0.75rem;
  grid-template-columns: auto minmax(120px, 1fr) auto;
  left: 50%;
  max-width: 660px;
  position: absolute;
  top: 28px;
  transform: translateX(-50%);
  width: min(660px, 58vw);
  z-index: 2;
}

.header-journey span {
  background: linear-gradient(180deg, #ffffff, #f7fbff);
  border: 1px solid rgba(212, 225, 239, 0.85);
  border-radius: 999px;
  box-shadow: 0 10px 28px rgba(6, 27, 69, 0.08);
  color: var(--navy);
  font-size: 0.86rem;
  font-weight: 950;
  padding: 0.45rem 0.82rem;
  text-align: center;
  white-space: nowrap;
}

.header-journey i {
  background: linear-gradient(90deg, var(--royal), var(--accent));
  display: block;
  height: 3px;
  position: relative;
}

.header-journey i::after {
  border-right: 3px solid var(--accent);
  border-top: 3px solid var(--accent);
  content: "";
  height: 12px;
  position: absolute;
  right: 0;
  top: -5px;
  transform: rotate(45deg);
  width: 12px;
}

nav {
  align-items: center;
  display: flex;
  gap: 1.45rem;
  font-size: 1rem;
  font-weight: 900;
  grid-column: 3;
  justify-self: end;
}

nav a {
  color: var(--ink);
}

.hero {
  background:
    linear-gradient(100deg, rgba(4, 34, 49, 0.92), rgba(0, 107, 127, 0.76)),
    url("https://images.unsplash.com/photo-1551836022-d5d88e9218df?auto=format&fit=crop&w=1800&q=80");
  background-position: center;
  background-size: cover;
  color: var(--white);
  display: grid;
  gap: 3rem;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
  min-height: 650px;
  position: relative;
  padding: 108px 5vw 88px;
}

.hero-copy {
  align-self: center;
  max-width: 760px;
}

.eyebrow {
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  margin: 0 0 0.8rem;
  text-transform: uppercase;
}

h1,
h2 {
  letter-spacing: 0;
  line-height: 1.02;
  margin: 0;
}

h1 {
  font-size: clamp(2.55rem, 6vw, 5.8rem);
  max-width: 900px;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.9rem);
}

.supporting {
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.25rem;
  line-height: 1.65;
  margin: 1.45rem 0 0;
  max-width: 760px;
}

.hero-actions,
.form-footer {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.button {
  border: 1px solid transparent;
  border-radius: 8px;
  cursor: pointer;
  display: inline-flex;
  font: inherit;
  font-weight: 850;
  justify-content: center;
  min-height: 48px;
  padding: 0.85rem 1.15rem;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.primary {
  background: var(--accent);
  box-shadow: 0 14px 28px rgba(196, 134, 47, 0.25);
  color: #201304;
}

.secondary {
  background: var(--white);
  border-color: var(--line);
  color: var(--ink);
}

.hero-panel {
  align-self: end;
  backdrop-filter: blur(12px);
  background: rgba(255, 255, 255, 0.13);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 8px;
  display: grid;
  gap: 0;
  overflow: hidden;
}

.hero-panel div {
  display: grid;
  gap: 0.35rem;
  padding: 1.45rem;
}

.hero-panel div + div {
  border-top: 1px solid rgba(255, 255, 255, 0.24);
}

.metric {
  color: var(--white);
  display: block;
  font-size: 2.4rem;
  font-weight: 900;
}

.trust-band {
  background: var(--white);
  border-bottom: 1px solid var(--line);
  display: grid;
  gap: 0;
  grid-template-columns: repeat(3, 1fr);
  padding: 0 5vw;
}

.trust-band div {
  display: grid;
  gap: 0.5rem;
  min-height: 138px;
  padding: 2rem;
}

.trust-band div + div {
  border-left: 1px solid var(--line);
}

.trust-band span,
.muted {
  color: var(--muted);
}

.process-section {
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  border-bottom: 1px solid var(--line);
  padding: 92px 5vw 72px;
}

.process-heading {
  margin: 0 auto 1.8rem;
  max-width: 760px;
  text-align: center;
}

.process-heading h2 {
  color: var(--navy);
  font-size: clamp(2.9rem, 6vw, 5rem);
}

.process-heading h2 span {
  color: var(--royal);
}

.process-heading p:last-child {
  color: var(--muted);
  font-size: 1.1rem;
  line-height: 1.7;
  margin: 1rem auto 0;
  max-width: 680px;
}

.process-flow {
  display: grid;
  gap: 1.55rem;
  grid-template-columns: 1fr;
  margin: 2.4rem auto 0;
  max-width: 980px;
  position: relative;
}

.process-flow::before {
  animation: flowPulse 3s ease-in-out infinite;
  background: linear-gradient(180deg, rgba(18, 110, 228, 0.16), rgba(18, 110, 228, 0.68), rgba(196, 134, 47, 0.88));
  bottom: 132px;
  content: "";
  left: 92px;
  position: absolute;
  top: 82px;
  width: 3px;
}

.process-card {
  background: rgba(255, 255, 255, 0.96);
  border: 2px solid #9ec4ff;
  border-radius: 20px;
  box-shadow: 0 18px 48px rgba(6, 27, 69, 0.1);
  display: grid;
  gap: 0.75rem;
  margin-left: 210px;
  min-height: 0;
  padding: 1.8rem 2rem;
  position: relative;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
  z-index: 1;
}

.process-card::after {
  background: var(--royal);
  border: 5px solid white;
  border-radius: 999px;
  box-shadow: 0 0 0 2px #9ec4ff, 0 8px 20px rgba(18, 110, 228, 0.25);
  color: white;
  content: "";
  height: 34px;
  left: -43px;
  position: absolute;
  top: 38px;
  width: 34px;
}

.process-card:nth-child(1)::before { content: "1"; }
.process-card:nth-child(2)::before { content: "2"; }
.process-card:nth-child(3)::before { content: "3"; }
.process-card:nth-child(4)::before { content: "4"; }
.process-card:nth-child(5)::before { content: "5"; }

.process-card::before {
  align-items: center;
  background: linear-gradient(135deg, var(--royal), #0747a8);
  border-radius: 999px;
  color: white;
  display: flex;
  font-size: 1.2rem;
  font-weight: 950;
  height: 52px;
  justify-content: center;
  left: -42px;
  position: absolute;
  top: 28px;
  transform: translateX(-100%);
  width: 52px;
}

.process-card:hover {
  border-color: rgba(18, 110, 228, 0.45);
  box-shadow: 0 26px 70px rgba(18, 110, 228, 0.16);
  transform: translateY(-6px);
}

.process-icon {
  align-items: center;
  background: radial-gradient(circle at 30% 20%, #2d86ff, var(--royal) 45%, var(--navy));
  border: 12px solid white;
  border-radius: 999px;
  box-shadow: 0 18px 36px rgba(6, 27, 69, 0.22), 0 0 0 1px #d5e7ff;
  color: white;
  display: inline-flex;
  height: 150px;
  justify-content: center;
  left: -210px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 150px;
}

.process-icon svg {
  fill: none;
  height: 70px;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
  width: 70px;
}

.step-label {
  color: var(--royal);
  font-size: 1rem;
  font-weight: 950;
  text-transform: uppercase;
}

.process-card h3 {
  color: var(--navy);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  line-height: 1.25;
  margin: 0;
}

.process-card p {
  color: #516173;
  font-size: 1.08rem;
  line-height: 1.6;
  margin: 0;
  max-width: 720px;
}

.process-tags {
  align-self: end;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.process-tags span {
  background: linear-gradient(180deg, #f4f8ff, #e7f0ff);
  border: 1px solid #d7e7fb;
  border-radius: 999px;
  color: #174d91;
  font-size: 0.9rem;
  font-weight: 850;
  padding: 0.48rem 0.9rem;
}

.success-card {
  background: linear-gradient(180deg, #ffffff 0%, #fffaf0 100%);
  border-color: rgba(196, 134, 47, 0.35);
}

.success-card .process-icon {
  background: radial-gradient(circle at 30% 20%, #f3c54c, #d89a1c 52%, #99630b);
}

.success-card::before,
.success-card::after {
  background: linear-gradient(135deg, #d89a1c, #9c650d);
  box-shadow: 0 0 0 2px rgba(196, 134, 47, 0.35), 0 8px 20px rgba(196, 134, 47, 0.25);
}

.success-card .step-label {
  color: #b87912;
}

.success-card .process-tags span {
  background: linear-gradient(180deg, #fffaf0, #faeed2);
  border-color: #f0d8aa;
  color: #9c650d;
}

.process-success {
  align-items: center;
  display: flex;
  justify-content: center;
  margin: 0 auto 2.8rem;
  max-width: 1180px;
}

.success-node {
  background: var(--white);
  border: 2px solid #d9e5f1;
  border-radius: 999px;
  box-shadow: 0 14px 36px rgba(6, 27, 69, 0.12);
  color: var(--navy);
  font-size: clamp(1.25rem, 3vw, 2rem);
  font-weight: 950;
  min-width: 230px;
  padding: 1.35rem 2rem;
  text-align: center;
}

.success-node.company {
  border-color: rgba(196, 134, 47, 0.45);
}

.success-link {
  align-items: center;
  display: flex;
  flex: 1;
  justify-content: center;
  min-width: 220px;
}

.success-link span {
  animation: flowPulse 2.8s ease-in-out infinite;
  background: linear-gradient(90deg, var(--royal), var(--accent));
  height: 4px;
  position: relative;
  width: 100%;
}

.success-link span::after {
  border-right: 3px solid var(--accent);
  border-top: 3px solid var(--accent);
  content: "";
  height: 10px;
  position: absolute;
  right: 0;
  top: -5px;
  transform: rotate(45deg);
  width: 10px;
}

.process-cta {
  align-items: center;
  background: linear-gradient(135deg, var(--navy), #0a3976);
  border-radius: 20px;
  box-shadow: 0 24px 60px rgba(6, 27, 69, 0.18);
  color: white;
  display: grid;
  gap: 1.5rem;
  grid-template-columns: auto 1fr;
  margin: 2.6rem auto 0;
  max-width: 980px;
  padding: 1.5rem 2rem;
}

.process-cta h3 {
  color: white;
  font-size: clamp(1.9rem, 4vw, 3rem);
  margin: 0 0 1rem;
}

.process-cta .button {
  text-transform: uppercase;
}

.cta-icon {
  align-items: center;
  border: 3px solid #8ebdff;
  border-radius: 999px;
  color: #f2bd3d;
  display: flex;
  height: 118px;
  justify-content: center;
  width: 118px;
}

.cta-icon svg {
  fill: none;
  height: 62px;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
  width: 62px;
}

.process-brand-footer {
  align-items: center;
  display: grid;
  gap: 2rem;
  grid-template-columns: minmax(190px, 280px) 1fr;
  margin: 2rem auto 0;
  max-width: 980px;
}

.process-brand-footer img {
  width: 100%;
}

.process-brand-footer p {
  border-left: 1px solid #cbd7e1;
  color: #526174;
  font-size: 1.15rem;
  font-weight: 800;
  line-height: 1.45;
  margin: 0;
  padding-left: 2rem;
}

@keyframes flowPulse {
  0%,
  100% {
    opacity: 0.45;
  }
  50% {
    opacity: 1;
  }
}

.form-section {
  display: grid;
  gap: 2rem;
  grid-template-columns: minmax(240px, 0.55fr) minmax(0, 1fr);
  padding: 86px 5vw;
}

.section-heading {
  max-width: 440px;
}

.sidebar-process {
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid #d7e2ed;
  border-radius: 18px;
  box-shadow: 0 18px 42px rgba(6, 27, 69, 0.1);
  margin-top: 2rem;
  max-width: 430px;
  padding: 1.25rem;
}

.sidebar-process-title {
  align-items: baseline;
  color: var(--navy);
  display: flex;
  flex-wrap: wrap;
  font-size: 1.35rem;
  font-weight: 900;
  gap: 0.35rem;
  line-height: 1.1;
}

.sidebar-process-title strong {
  color: var(--royal);
  font-size: 2rem;
}

.sidebar-process p {
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.55;
  margin: 0.75rem 0 1rem;
}

.sidebar-process ol {
  display: grid;
  gap: 0.7rem;
  list-style: none;
  margin: 0;
  padding: 0;
  position: relative;
}

.sidebar-process ol::before {
  background: linear-gradient(180deg, var(--royal), var(--accent));
  bottom: 1.3rem;
  content: "";
  left: 17px;
  opacity: 0.55;
  position: absolute;
  top: 1.3rem;
  width: 2px;
}

.sidebar-process li {
  background: #f8fbff;
  border: 1px solid #dce8f5;
  border-radius: 12px;
  display: grid;
  gap: 0.1rem;
  grid-template-columns: 36px 1fr;
  padding: 0.7rem 0.8rem;
  position: relative;
}

.sidebar-process li span {
  align-items: center;
  background: linear-gradient(135deg, var(--royal), var(--navy));
  border-radius: 999px;
  color: white;
  display: flex;
  font-size: 0.88rem;
  font-weight: 950;
  grid-row: span 2;
  height: 34px;
  justify-content: center;
  width: 34px;
  z-index: 1;
}

.sidebar-process li:last-child span {
  background: linear-gradient(135deg, #d89a1c, #9c650d);
}

.sidebar-process li strong {
  color: var(--navy);
  font-size: 0.98rem;
}

.sidebar-process li small {
  color: #617284;
  font-size: 0.82rem;
  line-height: 1.35;
}


.candidate-form,
.login-panel,
.dashboard-panel {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.candidate-form {
  padding: 2rem;
}

.field-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

label {
  display: grid;
  gap: 0.45rem;
}

label span {
  color: #304353;
  font-size: 0.88rem;
  font-weight: 800;
}

input,
textarea,
select {
  background: #fbfcfd;
  border: 1px solid #cbd7e1;
  border-radius: 8px;
  color: var(--ink);
  font: inherit;
  min-height: 46px;
  padding: 0.8rem 0.9rem;
  width: 100%;
}

textarea {
  min-height: 112px;
  resize: vertical;
}

input:focus,
textarea:focus,
select:focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(0, 107, 127, 0.12);
  outline: none;
}

.phone-field {
  display: grid;
  grid-template-columns: 72px 1fr;
}

.phone-prefix {
  align-items: center;
  background: #e9f1f4;
  border: 1px solid #cbd7e1;
  border-radius: 8px 0 0 8px;
  color: var(--brand-dark);
  display: flex;
  font-weight: 900;
  justify-content: center;
}

.phone-field input {
  border-left: 0;
  border-radius: 0 8px 8px 0;
}

.verification-links {
  background: #f4f8fa;
  border: 1px solid var(--line);
  border-radius: 8px;
  display: grid;
  gap: 0.55rem;
  margin-top: 1rem;
  padding: 1rem;
}

.verification-links[hidden] {
  display: none;
}

.verification-links a {
  color: var(--brand-dark);
  font-weight: 900;
  text-decoration: underline;
}

.verify-grid {
  align-items: end;
  display: grid;
  gap: 0.8rem;
  grid-template-columns: minmax(160px, 1fr) auto;
}

.wide {
  grid-column: 1 / -1;
}

.field-group-title {
  border-top: 1px solid var(--line);
  color: var(--brand-dark);
  font-size: 0.9rem;
  font-weight: 900;
  margin-top: 0.3rem;
  padding-top: 1rem;
  text-transform: uppercase;
}

.consent {
  align-items: start;
  background: #f4f8fa;
  border: 1px solid var(--line);
  border-radius: 8px;
  display: grid;
  gap: 0.75rem;
  grid-template-columns: 22px 1fr;
  margin-top: 1.25rem;
  padding: 1rem;
}

.consent input {
  margin-top: 0.1rem;
  min-height: 20px;
}

#formStatus,
#loginStatus,
#dashboardStatus {
  color: var(--success);
  font-weight: 800;
}

footer {
  align-items: center;
  background: var(--ink);
  color: var(--white);
  display: flex;
  gap: 1rem;
  justify-content: space-between;
  padding: 30px 5vw;
}

footer span:last-child {
  color: rgba(255, 255, 255, 0.72);
}

.admin-body {
  background: #eef3f6;
}

.admin-main {
  padding: 58px 5vw;
}

.login-panel {
  margin: 0 auto;
  max-width: 440px;
  padding: 2rem;
}

.login-panel h1,
.dashboard-title h1 {
  font-size: clamp(2rem, 4vw, 3.3rem);
}

.login-form {
  display: grid;
  gap: 1rem;
  margin-top: 1.6rem;
}

.link-button {
  background: none;
  border: 0;
  color: var(--brand-dark);
  cursor: pointer;
  font: inherit;
  font-weight: 850;
  padding: 0;
}

.dashboard-panel {
  padding: 1.5rem;
}

.dashboard-title {
  align-items: start;
  display: flex;
  gap: 1rem;
  justify-content: space-between;
  margin-bottom: 1.5rem;
}

.dashboard-actions {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: flex-end;
}

.count-badge {
  background: #e6f2f4;
  border: 1px solid #b9dce3;
  border-radius: 999px;
  color: var(--brand-dark);
  font-weight: 900;
  padding: 0.5rem 0.8rem;
  white-space: nowrap;
}

.search-grid {
  align-items: end;
  display: grid;
  gap: 0.85rem;
  grid-template-columns: repeat(8, minmax(120px, 1fr));
  margin-bottom: 1.25rem;
}

.table-wrap {
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow-x: auto;
}

table {
  border-collapse: collapse;
  min-width: 1120px;
  width: 100%;
}

th,
td {
  border-bottom: 1px solid var(--line);
  padding: 1rem;
  text-align: left;
  vertical-align: top;
}

th {
  background: #f4f7f9;
  color: #3d5060;
  font-size: 0.78rem;
  text-transform: uppercase;
}

td {
  color: #263846;
  line-height: 1.45;
}

td span {
  color: var(--muted);
  display: block;
  font-size: 0.9rem;
}

.status-pill {
  border-radius: 999px;
  display: inline-block;
  font-size: 0.76rem;
  font-weight: 900;
  margin: 0 0 0.35rem;
  padding: 0.28rem 0.55rem;
}

.status-pill.verified {
  background: #e5f5ee;
  color: #0f6d4d;
}

.status-pill.pending {
  background: #fff2db;
  color: #8a570a;
}

.verify-page {
  padding: 12vh 5vw;
}

.success {
  color: var(--success);
  font-weight: 850;
}

.error {
  color: #a33232;
  font-weight: 850;
}

.download-link {
  color: var(--brand-dark);
  font-weight: 900;
  text-decoration: underline;
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .header-journey {
    grid-column: 1 / -1;
    grid-row: 2;
    margin-bottom: 1rem;
  }

  .header-logo {
    width: 320px;
  }

  .hero,
  .form-section {
    grid-template-columns: 1fr;
  }

  .process-card {
    margin-left: 120px;
    min-height: auto;
    padding: 1.35rem 1.4rem;
  }

  .process-icon {
    height: 94px;
    left: -122px;
    width: 94px;
  }

  .process-icon svg {
    height: 44px;
    width: 44px;
  }

  .process-flow::before {
    left: 45px;
  }

  .process-card::before {
    height: 42px;
    left: -24px;
    width: 42px;
  }

  .process-card::after {
    left: -25px;
  }

  .hero {
    min-height: auto;
  }

  .trust-band {
    grid-template-columns: 1fr;
  }

  .trust-band div + div {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .search-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  .site-header,
  footer,
  .dashboard-title {
    align-items: flex-start;
    flex-direction: column;
  }

  nav {
    width: 100%;
  }

  .header-logo {
    height: auto;
    max-width: 100%;
    width: 300px;
  }

  .header-journey {
    gap: 0.55rem;
    grid-template-columns: 1fr;
  }

  .header-journey i {
    height: 38px;
    justify-self: center;
    width: 4px;
  }

  .header-journey i::after {
    bottom: 0;
    left: -7px;
    right: auto;
    top: auto;
    transform: rotate(135deg);
  }

  .hero {
    padding-top: 72px;
  }

  .process-section {
    padding: 64px 5vw;
  }

  .process-heading {
    text-align: center;
  }

  .process-success {
    align-items: stretch;
    flex-direction: column;
  }

  .success-node {
    min-width: 0;
  }

  .process-card {
    margin-left: 0;
    padding: 1rem;
    padding-top: 5rem;
  }

  .process-icon {
    left: 1rem;
    position: absolute;
    top: 1rem;
    transform: none;
  }

  .process-flow::before,
  .process-card::before,
  .process-card::after {
    display: none;
  }

  .success-link {
    min-height: 50px;
  }

  .success-link span {
    height: 100%;
    width: 3px;
  }

  .success-link span::after {
    bottom: 0;
    left: -5px;
    right: auto;
    top: auto;
    transform: rotate(135deg);
  }

  .process-cta {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .process-brand-footer {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .process-brand-footer img {
    justify-self: center;
    max-width: 280px;
  }

  .process-brand-footer p {
    border-left: 0;
    border-top: 1px solid #cbd7e1;
    padding: 1.2rem 0 0;
  }

  .hero-actions,
  .form-footer {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .field-grid,
  .search-grid {
    grid-template-columns: 1fr;
  }

  .candidate-form,
  .login-panel,
  .dashboard-panel {
    padding: 1rem;
  }

  .verify-grid {
    grid-template-columns: 1fr;
  }
}
