:root {
  --navy: #06142f;
  --navy2: #0a1e44;
  --ink: #0d1b32;
  --muted: #657089;
  --line: #dfe5ef;
  --cyan: #36d6e7;
  --blue: #3e7bff;
  --white: #fff;
  --soft: #f5f8fc;
  --green: #2fc98d;
  --shadow: 0 22px 70px rgba(13, 32, 67, .12);
  --radius: 24px;
}

* {
  box-sizing: border-box
}

html {
  scroll-behavior: smooth
}

body {
  margin: 0;
  color: var(--ink);
  font-family: Inter, "Noto Sans Devanagari", sans-serif;
  background: #fff;
  overflow-x: hidden
}

body:before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle at 80% 5%, rgba(62, 123, 255, .08), transparent 30%), radial-gradient(circle at 10% 70%, rgba(54, 214, 231, .06), transparent 25%);
  z-index: -1
}

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

button,
input,
select {
  font: inherit
}

.container {
  width: min(1160px, calc(100% - 40px));
  margin: auto
}

.section {
  padding: 110px 0
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--cyan), var(--blue));
  z-index: 1000
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 78px;
  z-index: 100;
  background: rgba(255, 255, 255, .78);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(220, 227, 239, .65)
}

.nav-wrap {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px
}

.brand-mark {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(6, 20, 47, .22);
  flex: none
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block
}

.brand strong {
  display: block;
  font-size: 16px;
  letter-spacing: .12em
}

.brand small {
  display: block;
  font-size: 8px;
  letter-spacing: .17em;
  color: #72809a;
  margin-top: 2px
}

.desktop-nav {
  display: flex;
  gap: 30px;
  font-size: 13px;
  font-weight: 600;
  color: #59657a
}

.desktop-nav a {
  transition: .25s
}

.desktop-nav a:hover {
  color: var(--blue)
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px
}

.lang-toggle {
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 99px;
  padding: 9px 13px;
  font-weight: 700;
  font-size: 12px;
  cursor: pointer
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border-radius: 12px;
  padding: 14px 20px;
  font-weight: 800;
  font-size: 13px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .25s, box-shadow .25s, background .25s
}

.btn:hover {
  transform: translateY(-2px)
}

.btn-small {
  padding: 10px 15px;
  background: var(--navy);
  color: #fff
}

.btn-ghost {
  background: transparent;
  color: var(--navy);
  border: 1px solid var(--line)
}

.btn-ghost:hover {
  border-color: var(--navy)
}

.btn-primary {
  background: linear-gradient(135deg, #173a78, #0b1d43);
  color: #fff;
  box-shadow: 0 14px 30px rgba(10, 30, 68, .2)
}

.btn-primary:hover {
  box-shadow: 0 18px 38px rgba(10, 30, 68, .3)
}

.btn-full {
  width: 100%
}

.hero {
  padding-top: 160px;
  min-height: 820px;
  background: linear-gradient(180deg, #f8fbff 0%, #fff 75%);
  position: relative;
  overflow: hidden
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.02fr .98fr;
  align-items: center;
  gap: 40px;
  position: relative;
  z-index: 2
}

.eyebrow {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .18em;
  color: #66748b
}

.hero-copy h1 {
  font-size: clamp(48px, 6vw, 78px);
  line-height: .98;
  letter-spacing: -.055em;
  margin: 20px 0;
  color: var(--navy);
  max-width: 720px
}

.hero-copy h1 em {
  font-style: normal;
  color: transparent;
  background: linear-gradient(100deg, #0c2450, #2b8ec4);
  -webkit-background-clip: text;
  background-clip: text
}

.hero-lead {
  font-size: 18px;
  line-height: 1.7;
  color: var(--muted);
  max-width: 590px
}

.hero-cta {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 32px
}

.text-link {
  background: none;
  border: 0;
  padding: 0;
  font-weight: 800;
  color: var(--navy);
  cursor: pointer
}

.trust-row {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 34px;
  color: #7b8799;
  font-size: 11px
}

.trust-row b {
  color: #526078
}

.pulse {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 7px rgba(47, 201, 141, .12);
  margin-right: 9px
}

.hero-visual {
  height: 550px;
  position: relative;
  display: grid;
  place-items: center
}

.orbit {
  position: absolute;
  border: 1px solid rgba(54, 214, 231, .3);
  border-radius: 50%;
  transform: rotate(-20deg);
  animation: spin 18s linear infinite
}

.orbit-one {
  width: 500px;
  height: 300px
}

.orbit-two {
  width: 360px;
  height: 500px;
  animation-direction: reverse;
  animation-duration: 24s
}

.card-stage {
  width: 420px;
  height: 310px;
  perspective: 1200px;
  position: relative;
  z-index: 2
}

.voter-card {
  position: absolute;
  inset: 15px;
  background: linear-gradient(135deg, #eaf4ee, #d7eee5);
  border: 1px solid rgba(11, 54, 53, .16);
  border-radius: 20px;
  transform: rotateX(9deg) rotateY(-18deg) rotateZ(3deg);
  box-shadow: 28px 35px 50px rgba(4, 24, 47, .22);
  padding: 23px;
  overflow: hidden;
  transition: transform .7s cubic-bezier(.2, .8, .2, 1)
}

.card-stage:hover .voter-card {
  transform: rotateX(3deg) rotateY(-5deg) rotateZ(0deg) translateY(-8px)
}

.voter-card:after {
  content: "";
  position: absolute;
  width: 240px;
  height: 240px;
  border: 1px solid rgba(27, 113, 93, .12);
  border-radius: 50%;
  right: -80px;
  bottom: -120px
}

.card-head {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #173b3c;
  font-size: 8px;
  line-height: 1.45
}

.card-head b {
  font-size: 10px
}

.emblem {
  width: 28px;
  height: 28px;
  border: 1px solid #173b3c;
  border-radius: 50%;
  display: grid;
  place-items: center
}

.card-body {
  display: flex;
  gap: 22px;
  margin-top: 26px
}

.portrait-ring {
  width: 105px;
  height: 125px;
  border: 7px solid rgba(255, 255, 255, .8);
  background: #d7e2e0;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 7px 15px rgba(0, 0, 0, .08)
}

.portrait-ring img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.55)
}

.fake-lines {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 13px;
  padding-top: 10px
}

.fake-lines i {
  display: block;
  height: 7px;
  border-radius: 10px;
  background: rgba(16, 63, 61, .14)
}

.fake-lines i:nth-child(1) {
  width: 90%
}

.fake-lines i:nth-child(2) {
  width: 70%
}

.fake-lines i:nth-child(3) {
  width: 82%
}

.fake-lines i:nth-child(4) {
  width: 55%
}

.card-code {
  position: absolute;
  bottom: 18px;
  left: 23px;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .15em;
  color: #28645b
}

.card-shadow {
  position: absolute;
  width: 320px;
  height: 60px;
  bottom: -10px;
  left: 50px;
  background: rgba(7, 28, 53, .22);
  filter: blur(24px);
  border-radius: 50%;
  transform: rotate(-4deg)
}

.glass-panel {
  position: absolute;
  z-index: 4;
  background: rgba(255, 255, 255, .74);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, .8);
  box-shadow: var(--shadow);
  border-radius: 16px;
  padding: 13px 15px;
  display: flex;
  align-items: center;
  gap: 10px
}

.floating-panel strong {
  display: block;
  font-size: 11px
}

.floating-panel small {
  display: block;
  color: #78849a;
  font-size: 9px;
  margin-top: 3px
}

.panel-top {
  top: 80px;
  right: 10px
}

.panel-bottom {
  bottom: 45px;
  left: 0
}

.panel-icon {
  width: 27px;
  height: 27px;
  border-radius: 9px;
  background: #e9fff7;
  color: #17a979;
  display: grid;
  place-items: center;
  font-weight: 900
}

.mini-chart {
  display: flex;
  align-items: end;
  gap: 3px;
  height: 28px
}

.mini-chart i {
  width: 4px;
  background: var(--blue);
  border-radius: 5px
}

.mini-chart i:nth-child(1) {
  height: 12px
}

.mini-chart i:nth-child(2) {
  height: 20px
}

.mini-chart i:nth-child(3) {
  height: 15px
}

.mini-chart i:nth-child(4) {
  height: 25px
}

.hero-glow {
  position: absolute;
  width: 600px;
  height: 600px;
  right: -150px;
  top: 50px;
  background: radial-gradient(circle, rgba(50, 180, 230, .13), transparent 65%);
  filter: blur(5px)
}

.intro-strip {
  background: var(--navy);
  color: #fff
}

.intro-inner {
  display: flex;
  align-items: center;
  gap: 35px;
  padding: 28px 0
}

.intro-kicker {
  font-size: 10px;
  letter-spacing: .2em;
  color: var(--cyan);
  font-weight: 800;
  white-space: nowrap
}

.intro-inner p {
  margin: 0;
  line-height: 1.6;
  color: #cbd5e6;
  font-size: 13px;
  flex: 1
}

.arrow-link {
  font-size: 28px;
  color: #fff
}

.section-heading {
  max-width: 720px;
  margin-bottom: 55px
}

.section-heading h2 {
  font-size: clamp(34px, 4vw, 52px);
  letter-spacing: -.045em;
  line-height: 1.05;
  margin: 15px 0
}

.section-heading p {
  color: var(--muted);
  line-height: 1.7;
  max-width: 650px
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  max-width: 1040px;
  margin: 0 auto;
  gap: 18px
}

.service-card {
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  min-height: 315px;
  position: relative;
  overflow: hidden;
  background: #fff;
  transition: .4s
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow);
  border-color: #cbd8ee
}

.service-card.active {
  background: linear-gradient(150deg, #071633, #0d2a58);
  color: #fff;
  border-color: #0d2a58
}

.service-card.active p,
.service-card.active .service-no {
  color: #a9bad5
}

.service-no {
  font-size: 11px;
  color: #8793a7;
  font-weight: 800;
  letter-spacing: .1em
}

.service-icon {
  font-size: 38px;
  line-height: 1;
  margin: 40px 0 20px;
  color: var(--blue)
}

.service-card h3 {
  font-size: 21px;
  margin: 0 0 10px
}

.service-card p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.7;
  max-width: 290px
}

.card-link {
  position: absolute;
  bottom: 28px;
  font-size: 12px;
  font-weight: 800;
  color: var(--blue)
}

.dark-section {
  background: var(--navy);
  color: #fff
}

.light .eyebrow,
.light .section-heading p {
  color: #a8b6cd
}

.section-heading.light h2 {
  color: #fff
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, .12)
}

.process-step {
  background: var(--navy);
  padding: 34px 28px;
  min-height: 250px;
  transition: .3s
}

.process-step:hover {
  background: #0a2046
}

.process-step span {
  font-size: 11px;
  color: var(--cyan);
  font-weight: 800;
  letter-spacing: .15em
}

.process-step h3 {
  font-size: 21px;
  margin: 50px 0 10px
}

.process-step p {
  font-size: 13px;
  color: #aab8cc;
  line-height: 1.7
}

.fees-section {
  background: #f7f9fc
}

.fee-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 90px;
  align-items: center
}

.fee-table {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 10px 28px;
  box-shadow: var(--shadow)
}

.fee-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 23px 0;
  border-bottom: 1px solid #edf0f5;
  font-size: 13px
}

.fee-row strong {
  font-size: 22px;
  color: var(--navy)
}

.fee-note {
  display: flex;
  gap: 10px;
  margin: 18px 0 8px;
  padding: 12px;
  background: #f5f8fc;
  border-radius: 12px
}

.fee-note span {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #eaf0ff;
  color: #3d6fe4;
  display: grid;
  place-items: center;
  font-size: 11px;
  font-weight: 800
}

.fee-note p {
  font-size: 10px;
  line-height: 1.6;
  color: #6b768a;
  margin: 0
}

.quote-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px
}

.quote-card {
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 34px;
  background: #fff;
  box-shadow: 0 12px 40px rgba(20, 40, 70, .05)
}

.quote-mark {
  font-size: 52px;
  color: #b9c9ea;
  line-height: .6
}

.quote-card p {
  font-size: 18px;
  line-height: 1.7;
  color: #2d3b53;
  min-height: 120px
}

.quote-person {
  display: flex;
  align-items: center;
  gap: 12px
}

.avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #edf3ff;
  color: var(--blue);
  font-size: 10px;
  font-weight: 900
}

.quote-person b,
.quote-person small {
  display: block
}

.quote-person b {
  font-size: 11px
}

.quote-person small {
  font-size: 10px;
  color: #8792a5;
  margin-top: 3px
}

.contact-section {
  background: linear-gradient(135deg, #f8fbff, #eef4ff)
}

.contact-layout {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 90px;
  align-items: start
}

.contact-copy h2 {
  font-size: clamp(40px, 5vw, 64px);
  line-height: 1;
  letter-spacing: -.05em;
  margin: 18px 0
}

.contact-copy p {
  color: var(--muted);
  line-height: 1.7;
  max-width: 470px
}

.contact-points {
  display: grid;
  gap: 14px;
  margin-top: 30px;
  font-size: 12px
}

.contact-points span {
  color: #2b9b73
}

.contact-points b {
  color: #47556d;
  margin-left: 7px
}

.inquiry-form {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 30px;
  box-shadow: var(--shadow);
  display: grid;
  gap: 16px
}

.inquiry-form label span {
  display: block;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #647189;
  margin: 0 0 8px
}

.inquiry-form input,
.inquiry-form select {
  width: 100%;
  padding: 14px 15px;
  border: 1px solid #dce3ee;
  border-radius: 11px;
  outline: none;
  color: var(--ink);
  background: #fff;
  transition: .2s
}

.inquiry-form input:focus,
.inquiry-form select:focus {
  border-color: #80a4ee;
  box-shadow: 0 0 0 4px rgba(62, 123, 255, .08)
}

.form-status {
  min-height: 18px;
  font-size: 12px;
  font-weight: 700
}

.form-status.success {
  color: #1b9b6d
}

.form-status.error {
  color: #c74747
}

.form-disclaimer {
  font-size: 10px;
  color: #8792a4;
  line-height: 1.6
}

.site-footer {
  background: #040f25;
  color: #fff;
  padding: 48px 0 20px
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr 1fr;
  gap: 32px
}

.footer-brand {
  margin-bottom: 12px
}

.brand-mark-footer {
  width: 32px;
  height: 32px;
  border-radius: 9px;
  overflow: hidden;
  flex: none;
  box-shadow: 0 6px 16px rgba(0, 0, 0, .28)
}

.brand-mark-footer img {
  width: 20%;
  height: 20%;
  object-fit: cover;
  display: block
}

.site-footer p {
  font-size: 11.5px;
  color: #8394ae;
  max-width: 300px;
  line-height: 1.6;
  margin: 0 0 10px
}

.site-footer a,
.footer-chat {
  display: block;
  color: #aab6c9;
  font-size: 12.5px;
  margin: 7px 0;
  background: none;
  border: 0;
  padding: 0;
  cursor: pointer;
  line-height: 1.4
}

.site-footer a:hover,
.footer-chat:hover {
  color: #fff
}

.footer-label {
  font-size: 9px;
  letter-spacing: .14em;
  color: #54627c;
  font-weight: 800;
  display: block;
  margin-bottom: 10px
}

.footer-soon {
  display: block;
  font-size: 12px;
  color: #54627c;
  font-style: italic;
  margin: 7px 0
}

.footer-contact a {
  display: flex;
  align-items: center;
  gap: 7px
}

.footer-contact span {
  width: 15px;
  text-align: center;
  flex: none;
  font-size: 12px
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 8px 24px;
  border-top: 1px solid rgba(255, 255, 255, .08);
  margin-top: 34px;
  padding-top: 16px;
  color: #5d6c85;
  font-size: 9px
}

.footer-bottom span:last-child {
  max-width: 560px
}

.chat-fab {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 58px;
  height: 58px;
  border: 0;
  border-radius: 18px;
  background: linear-gradient(135deg, #102e65, #071a3a);
  color: #fff;
  box-shadow: 0 18px 45px rgba(5, 20, 50, .28);
  z-index: 80;
  cursor: pointer;
  font-size: 22px;
  transition: .3s
}

.chat-fab:hover {
  transform: translateY(-4px) rotate(3deg)
}

.chat-fab i {
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  right: 10px;
  top: 9px;
  border: 2px solid #102e65
}

.chat-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(3, 12, 30, .36);
  backdrop-filter: blur(5px);
  z-index: 200;
  align-items: flex-end;
  justify-content: flex-end;
  padding: 25px
}

.chat-overlay.open {
  display: flex
}

.chat-shell {
  width: min(390px, 100%);
  height: min(610px, calc(100vh - 50px));
  background: #fff;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 30px 100px rgba(3, 12, 30, .3);
  display: grid;
  grid-template-rows: auto 1fr auto
}

.chat-head {
  background: var(--navy);
  color: #fff;
  padding: 18px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center
}

.chat-head strong,
.chat-head small {
  display: block
}

.chat-head strong {
  font-size: 13px
}

.chat-head small {
  font-size: 9px;
  color: #aebbd0;
  margin-top: 4px
}

.chat-head button {
  border: 0;
  background: none;
  color: #fff;
  font-size: 28px;
  cursor: pointer
}

.status-dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  margin-right: 8px
}

.chat-messages {
  padding: 18px;
  overflow: auto;
  background: #f6f8fc;
  display: flex;
  flex-direction: column;
  gap: 12px
}

.chat-bubble {
  max-width: 85%;
  padding: 12px 14px;
  border-radius: 14px;
  font-size: 12px;
  line-height: 1.6
}

.chat-bubble.bot {
  background: #fff;
  border: 1px solid #e2e7ef;
  align-self: flex-start
}

.chat-bubble.user {
  background: #12336c;
  color: #fff;
  align-self: flex-end
}

.chat-bubble.typing {
  color: #7b879a;
  font-style: italic
}

.chat-form {
  display: flex;
  gap: 8px;
  padding: 12px;
  border-top: 1px solid #e4e8ef;
  background: #fff
}

.chat-form input {
  flex: 1;
  border: 1px solid #dce3ed;
  border-radius: 11px;
  padding: 12px;
  outline: none
}

.chat-form button {
  width: 44px;
  border: 0;
  border-radius: 11px;
  background: var(--navy);
  color: #fff;
  cursor: pointer
}

.reveal {
  opacity: 0;
  transform: translateY(25px);
  transition: opacity .7s ease, transform .7s ease
}

.reveal.visible {
  opacity: 1;
  transform: none
}

@keyframes spin {
  to {
    transform: rotate(340deg)
  }
}

@media(max-width:900px) {
  .desktop-nav {
    display: none
  }

  .hero-grid,
  .fee-layout,
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 45px
  }

  .hero {
    min-height: auto;
    padding-bottom: 90px
  }

  .hero-visual {
    height: 470px
  }

  .service-grid {
    grid-template-columns: 1fr
  }

  .process-grid {
    grid-template-columns: 1fr 1fr
  }

  .quote-grid {
    grid-template-columns: 1fr
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr
  }

  .panel-top {
    right: 0
  }

  .intro-inner {
    align-items: flex-start;
    flex-wrap: wrap
  }
}

@media(max-width:600px) {
  .container {
    width: min(100% - 28px, 1160px)
  }

  .site-header {
    height: 70px
  }

  .nav-actions .btn {
    display: none
  }

  .hero {
    padding-top: 125px
  }

  .hero-copy h1 {
    font-size: 46px
  }

  .hero-lead {
    font-size: 16px
  }

  .hero-cta {
    flex-direction: column;
    align-items: flex-start
  }

  .hero-visual {
    height: 390px
  }

  .card-stage {
    width: 330px;
    height: 250px
  }

  .voter-card {
    padding: 18px
  }

  .portrait-ring {
    width: 78px;
    height: 96px
  }

  .panel-top {
    top: 25px;
    right: -3px
  }

  .panel-bottom {
    bottom: 12px;
    left: -5px
  }

  .orbit-one {
    width: 360px;
    height: 230px
  }

  .orbit-two {
    width: 260px;
    height: 380px
  }

  .section {
    padding: 80px 0
  }

  .process-grid {
    grid-template-columns: 1fr
  }

  .footer-grid {
    grid-template-columns: 1fr
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start
  }

  .chat-overlay {
    padding: 10px
  }

  .chat-shell {
    height: calc(100vh - 20px)
  }
}


.admin-login-link {
  display: inline-flex;
  align-items: center;
  margin-top: 12px;
  font-size: .82rem;
  color: rgba(255, 255, 255, .68);
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, .18);
  padding: 7px 11px;
  border-radius: 999px;
  transition: .2s ease;
}

.admin-login-link:hover {
  color: #fff;
  border-color: rgba(255, 255, 255, .45);
  transform: translateY(-1px);
}