@font-face {
  font-family: "Segoe UI Regular";
  src: url("../assets/segoe-regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Segoe Ui Semibold";
  src: url("../assets/segoe-semibold.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Segoe Ui Semilight";
  src: url("../assets/segoe-semilight.woff2") format("woff2");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

:root {
  --ifbc-blue: #3e5483;
  --ifbc-dark-grey: #57585b;
  --main-text: #57585bde;
  --light-bg: #f3f3f3;
  --line: #e3e3e2;
  --muted: #bcbcbd;
  --white: #fff;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--main-text);
  background: var(--white);
  font-family: "Segoe UI Regular", "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  letter-spacing: 1.08px;
}

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

img {
  display: block;
  max-width: 100%;
}

button {
  font: inherit;
  color: inherit;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 0;
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.container {
  max-width: 1268px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ========== Header ========== */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  isolation: isolate;
}

.header-top {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-top: 18px;
}

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

.social-icon {
  width: 30px;
  height: 30px;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.social-icon:hover {
  opacity: 0.8;
  transform: translateY(-1px);
}

.social-icon img {
  width: 100%;
  height: 100%;
}

.lang-switch {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: "Segoe Ui Semilight", sans-serif;
  font-size: 14px;
  letter-spacing: 0.08em;
}

.lang {
  color: var(--muted);
  transition: color 0.2s ease;
}

.lang.is-active,
.lang:hover {
  color: var(--ifbc-blue);
}

.lang-sep {
  color: var(--muted);
}

.header-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 28px 0 32px;
}

.header-left {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.hamburger {
  display: none;
  width: 42px;
  height: 42px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
}

.hamburger span {
  width: 22.5px;
  height: 3px;
  border-radius: 2px;
  background: var(--ifbc-blue);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.hamburger[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

.hamburger[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.hamburger[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

.primary-nav {
  min-width: 0;
}

.nav-list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0;
}

.nav-item {
  position: relative;
  padding-right: 42px;
  font-family: "Segoe Ui Semilight", sans-serif;
  font-size: 18px;
  font-weight: 300;
  line-height: 1.112;
  letter-spacing: 1.08px;
  color: var(--ifbc-dark-grey);
}

.nav-item.has-menu::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  height: 18px;
}

.nav-item:last-child {
  padding-right: 0;
}

.nav-trigger {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.nav-trigger > a {
  color: #222;
  transition: color 0.25s ease;
}

.nav-trigger > a:hover,
.nav-item.is-open .nav-trigger > a,
.nav-item:hover .nav-trigger > a {
  color: var(--ifbc-blue);
}

.caret {
  color: var(--ifbc-dark-grey);
  font-size: 10px;
  line-height: 1;
  transform: rotate(0deg);
  transition: transform 0.2s ease, color 0.2s ease;
}

.nav-item:hover .caret,
.nav-item.is-open .caret {
  color: var(--ifbc-blue);
  transform: rotate(180deg);
}

.dropdown-card {
  position: absolute;
  top: calc(100% + 14px);
  left: 0;
  min-width: 260px;
  padding: 10px 20px;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 2px 12px rgba(20, 20, 43, 0.08);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
  z-index: 50;
}

.nav-item:hover .dropdown-card,
.nav-item:focus-within .dropdown-card,
.nav-item.is-open .dropdown-card {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.dropdown-card li {
  width: 220px;
  border-bottom: 1px solid var(--muted);
  padding: 15px 0;
  transition: border-color 0.25s ease;
}

.dropdown-card li:last-child {
  border-bottom: 0;
}

.dropdown-card a {
  display: block;
  color: var(--ifbc-dark-grey);
  font-family: "Segoe UI Regular", sans-serif;
  font-size: 16px;
  letter-spacing: 0.04em;
  transition: color 0.25s ease;
}

.dropdown-card li:hover {
  border-bottom-color: var(--ifbc-blue);
}

.dropdown-card a:hover {
  color: var(--ifbc-blue);
}

.mobile-meta {
  display: none;
}

.brand {
  flex: 0 0 auto;
  width: 196px;
  max-width: min(196px, 52vw);
  margin-top: 0;
  line-height: 0;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

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

.brand:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

/* ========== Hero ========== */

.hero {
  position: relative;
  padding: 72px 0 0;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0 0 auto 0;
  height: 560px;
  background: var(--ifbc-dark-grey);
  z-index: -1;
}

.hero-shell {
  max-width: 1213px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 0.75fr 1fr;
  align-items: stretch;
}

.hero-photo {
  margin: 0;
  max-width: 624px;
  max-height: 680px;
  overflow: hidden;
  background: #4a4b4e;
}

.hero-photo img {
  width: 100%;
  height: 100%;
  min-height: 560px;
  object-fit: cover;
  object-position: center top;
  animation: photoIn 0.9s ease both;
}

.hero-content {
  background: var(--white);
  padding: 50px 50px 44px;
  animation: contentIn 0.8s ease 0.1s both;
}

.hero-content h1 {
  margin: 0;
  color: var(--ifbc-blue);
  font-family: "Segoe Ui Semibold", sans-serif;
  font-size: 36px;
  line-height: 1.2;
}

.role {
  margin: 8px 0 0;
  color: var(--ifbc-blue);
  font-family: "Segoe Ui Semibold", sans-serif;
  font-size: 18px;
}

.divider {
  height: 1px;
  margin: 28px 0;
  background: var(--ifbc-blue);
}

.bio {
  margin: 0;
}

.focus-block,
.experience-block {
  margin-top: 36px;
}

.focus-block h3,
.experience-block h3 {
  margin: 0 0 14px;
  color: var(--ifbc-blue);
  font-family: "Segoe Ui Semibold", sans-serif;
  font-size: 16px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.focus-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 18px;
}

.focus-list li {
  position: relative;
  padding-left: 16px;
  color: var(--ifbc-dark-grey);
  font-size: 15px;
}

.focus-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--ifbc-blue);
}

.timeline {
  display: grid;
  gap: 14px;
}

.timeline li {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 14px;
  align-items: start;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}

.timeline li:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.timeline .year {
  color: var(--ifbc-blue);
  font-family: "Segoe Ui Semibold", sans-serif;
  font-size: 13px;
  letter-spacing: 0.04em;
}

.hero-content h2 {
  margin: 40px 0 12px;
  color: var(--ifbc-dark-grey);
  font-family: "Segoe Ui Semibold", sans-serif;
  font-size: 18px;
  line-height: 1.4;
}

.quote {
  margin: 0 0 28px;
  font-style: italic;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border: 1px solid var(--line);
  background: var(--light-bg);
  color: var(--ifbc-dark-grey);
  font-size: 14px;
  transition: border-color 0.25s ease, transform 0.25s ease, color 0.25s ease;
}

.chip img {
  width: 22px;
  height: 22px;
}

.chip:hover {
  border-color: var(--ifbc-blue);
  color: var(--ifbc-blue);
  transform: translateY(-2px);
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 28px;
  color: var(--ifbc-dark-grey);
  font-family: "Segoe Ui Semibold", sans-serif;
  font-size: 14px;
  letter-spacing: 0.06em;
  transition: color 0.2s ease, transform 0.2s ease;
}

.back-link:hover {
  color: var(--ifbc-blue);
  transform: translateX(-3px);
}

/* ========== News ========== */

.news {
  padding: 72px 0;
}

.news-inner {
  max-width: 820px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.news h2 {
  margin: 0;
  color: var(--ifbc-dark-grey);
  font-family: "Segoe Ui Semibold", sans-serif;
  font-size: 28px;
}

.news p {
  max-width: 70ch;
  margin: 36px 0 42px;
}

.btn {
  display: inline-block;
  border: 2.5px solid var(--ifbc-blue);
  color: var(--ifbc-blue);
  background: transparent;
  padding: 20px 36px;
  font-family: "Segoe Ui Semibold", sans-serif;
  font-size: 16px;
  letter-spacing: 0.06em;
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease, border-color 0.3s ease;
  box-shadow: 0 4px 10px rgba(20, 20, 43, 0.04);
}

.btn:hover {
  background: var(--ifbc-blue);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-light {
  border-color: var(--light-bg);
  color: var(--light-bg);
}

.btn-light:hover {
  background: var(--light-bg);
  color: var(--ifbc-dark-grey);
  border-color: var(--light-bg);
}

/* ========== Footer ========== */

.site-footer {
  background: var(--ifbc-dark-grey);
  color: var(--light-bg);
  padding: 90px 0 0;
}

.footer-logo {
  width: 180px;
  max-width: 70%;
  height: auto;
  margin: 0 0 48px;
  filter: none;
  display: block;
  object-fit: contain;
}

.footer-top {
  display: grid;
  grid-template-columns: minmax(240px, 0.9fr) auto auto;
  gap: 40px;
  align-items: start;
  justify-content: space-between;
  padding-bottom: 64px;
}

.footer-newsletter-title {
  margin-bottom: 24px;
  color: var(--light-bg);
  font-family: "Segoe Ui Semibold", sans-serif;
  font-size: 24px;
}

.footer-contacts {
  display: grid;
  gap: 18px;
}

.footer-contact {
  display: flex;
  align-items: center;
  gap: 14px;
  color: #fff;
  transition: transform 0.25s ease;
}

.footer-contact:hover {
  transform: translateX(4px);
}

.footer-contact img {
  width: 24px;
  height: 24px;
}

.footer-middle {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding-bottom: 48px;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 36px;
}

.footer-nav a {
  color: var(--light-bg);
  font-family: "Segoe Ui Semibold", sans-serif;
  font-size: 20px;
  transition: opacity 0.2s ease;
}

.footer-nav a:hover {
  opacity: 0.75;
}

.globalscope img {
  width: 207px;
  opacity: 0.95;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 28px 0;
  border-top: 1px solid rgba(227, 227, 226, 0.35);
  color: var(--light-bg);
  font-size: 14px;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom ul {
  display: flex;
  gap: 24px;
}

.footer-bottom a {
  color: var(--light-bg);
  opacity: 0.9;
}

.footer-bottom a:hover {
  opacity: 1;
}

.local-note {
  opacity: 0.55;
  font-size: 12px;
}

@keyframes contentIn {
  from {
    opacity: 0;
    transform: translateY(10%);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes photoIn {
  from {
    opacity: 0;
    transform: scale(1.04);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* ========== Responsive ========== */

@media (max-width: 1100px) {
  .nav-item {
    padding-right: 28px;
    font-size: 16px;
  }
}

@media (max-width: 991px) {
  .header-top {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .header-main {
    padding: 18px 0;
  }

  .header-left {
    position: static;
  }

  .primary-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: none;
    background: var(--white);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 6px 12px rgba(20, 20, 43, 0.08);
    padding: 24px;
    max-height: calc(100vh - 80px);
    overflow: auto;
  }

  .primary-nav.is-open {
    display: block;
  }

  .nav-list {
    flex-direction: column;
    align-items: stretch;
  }

  .nav-item {
    padding: 0 0 18px;
    width: 100%;
  }

  .nav-trigger {
    width: 100%;
    justify-content: space-between;
  }

  .dropdown-card {
    position: static;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none;
    display: none;
    margin-top: 10px;
    box-shadow: none;
    border: 0;
    padding: 0 0 0 8px;
  }

  .nav-item.is-open .dropdown-card {
    display: block;
  }

  .dropdown-card li {
    width: auto;
  }

  .mobile-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-top: 8px;
    padding-top: 18px;
    border-top: 1px solid var(--line);
  }

  .hero {
    padding-top: 36px;
  }

  .hero-bg {
    height: 280px;
  }

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

  .hero-photo {
    max-width: none;
    max-height: none;
  }

  .hero-photo img {
    min-height: 420px;
  }

  .hero-content {
    padding: 36px 28px;
  }

  .hero-content h1 {
    font-size: 30px;
  }

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

@media (max-width: 640px) {
  .focus-list {
    grid-template-columns: 1fr;
  }

  .timeline li {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .hero-content {
    padding: 28px 20px;
  }

  .chip span {
    font-size: 13px;
  }

  .footer-nav a {
    font-size: 18px;
  }

  .globalscope img {
    width: 160px;
  }

  .btn {
    width: 100%;
    max-width: 320px;
    text-align: center;
  }
}


/* ========== Full-site additions ========== */

.page-hero {
  padding: 72px 0 36px;
  background:
    linear-gradient(135deg, rgba(62, 84, 131, 0.08), rgba(243, 243, 243, 0.9)),
    var(--light-bg);
}

.page-hero h1 {
  margin: 0;
  color: var(--ifbc-blue);
  font-family: "Segoe Ui Semibold", sans-serif;
  font-size: clamp(34px, 5vw, 52px);
  line-height: 1.15;
  letter-spacing: 0.02em;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--ifbc-blue);
  font-family: "Segoe Ui Semibold", sans-serif;
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.lead {
  max-width: 62ch;
  margin: 18px 0 0;
  font-size: 18px;
  color: var(--ifbc-dark-grey);
}

.page-body {
  padding: 56px 0 24px;
}

.page-body.narrow,
.container.narrow {
  max-width: 900px;
}

.content-block {
  margin-bottom: 36px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--line);
}

.content-block:last-of-type {
  border-bottom: 0;
}

.content-block h2 {
  margin: 0 0 12px;
  color: var(--ifbc-blue);
  font-family: "Segoe Ui Semibold", sans-serif;
  font-size: 22px;
}

.content-block p {
  margin: 0;
}

.section-head {
  margin-bottom: 28px;
}

.section-head h2 {
  margin: 0 0 8px;
  color: var(--ifbc-dark-grey);
  font-family: "Segoe Ui Semibold", sans-serif;
  font-size: 28px;
}

.section-head p {
  margin: 0;
  max-width: 60ch;
}

.tile-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.tile {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-height: 180px;
  padding: 24px;
  border: 1px solid var(--line);
  background: var(--white);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.tile:hover {
  transform: translateY(-4px);
  border-color: var(--ifbc-blue);
  box-shadow: 0 12px 30px rgba(20, 20, 43, 0.08);
}

.tile h3 {
  margin: 0;
  color: var(--ifbc-blue);
  font-family: "Segoe Ui Semibold", sans-serif;
  font-size: 20px;
}

.tile p {
  margin: 0;
  flex: 1;
  font-size: 15px;
}

.tile-link {
  color: var(--ifbc-blue);
  font-family: "Segoe Ui Semibold", sans-serif;
  font-size: 14px;
  letter-spacing: 0.04em;
}

.people-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.person-card {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 14px;
  align-items: center;
  padding: 14px;
  border: 1px solid var(--line);
  background: var(--white);
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.person-card:hover {
  transform: translateY(-3px);
  border-color: var(--ifbc-blue);
}

.person-card img {
  width: 88px;
  height: 88px;
  object-fit: cover;
}

.person-card strong {
  display: block;
  color: var(--ifbc-blue);
  font-family: "Segoe Ui Semibold", sans-serif;
}

.person-card span {
  display: block;
  margin-top: 4px;
  font-size: 14px;
  color: var(--ifbc-dark-grey);
}

.home-hero {
  position: relative;
  padding: 88px 0 72px;
  overflow: hidden;
  background:
    radial-gradient(circle at 85% 15%, rgba(62, 84, 131, 0.18), transparent 40%),
    linear-gradient(160deg, #f7f7f8 0%, #ececef 55%, #dfe3ea 100%);
}

.home-hero-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 36px;
  align-items: stretch;
}

.home-hero h1 {
  margin: 0;
  color: var(--ifbc-blue);
  font-family: "Segoe Ui Semibold", sans-serif;
  font-size: clamp(36px, 5vw, 56px);
  line-height: 1.12;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.btn-ghost {
  border-color: var(--ifbc-dark-grey);
  color: var(--ifbc-dark-grey);
}

.btn-ghost:hover {
  background: var(--ifbc-dark-grey);
  color: var(--white);
  border-color: var(--ifbc-dark-grey);
}

.home-panel {
  padding: 28px;
  background: var(--ifbc-dark-grey);
  color: var(--light-bg);
}

.home-panel h2 {
  margin: 0 0 18px;
  font-family: "Segoe Ui Semibold", sans-serif;
  font-size: 22px;
  color: var(--white);
}

.check-list {
  display: grid;
  gap: 12px;
}

.check-list li {
  position: relative;
  padding-left: 22px;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #9db0d4;
}

.contact-panel {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 12px;
}

.back-inline {
  margin-top: 8px;
}

.back-inline a {
  color: var(--ifbc-blue);
  font-family: "Segoe Ui Semibold", sans-serif;
}

.footer-bottom .local-note a {
  margin-left: 8px;
  opacity: 0.8;
}

@media (max-width: 991px) {
  .tile-grid,
  .people-grid,
  .home-hero-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .people-grid {
    grid-template-columns: 1fr;
  }
}

/* ========== Registration form ========== */

.register-form {
  margin-top: 8px;
  padding: 28px;
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: 0 8px 28px rgba(20, 20, 43, 0.05);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 14px;
  color: var(--ifbc-dark-grey);
}

.form-field span,
.form-fieldset legend {
  font-family: "Segoe Ui Semibold", sans-serif;
  letter-spacing: 0.04em;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  border: 1px solid var(--line);
  background: #fafafa;
  color: var(--ifbc-dark-grey);
  padding: 12px 14px;
  font: inherit;
  letter-spacing: 0.04em;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--ifbc-blue);
  box-shadow: 0 0 0 3px rgba(62, 84, 131, 0.12);
  background: var(--white);
}

.form-field-full {
  margin-top: 18px;
}

.form-fieldset {
  margin: 24px 0 0;
  padding: 18px;
  border: 1px solid var(--line);
  display: grid;
  gap: 10px;
}

.check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--ifbc-dark-grey);
}

.check input {
  margin-top: 3px;
}

.consent {
  margin-top: 20px;
}

.form-actions {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
}

.form-actions .btn {
  border: 0;
  cursor: pointer;
}

.form-note {
  margin: 0;
  font-size: 13px;
  color: #7a7b7e;
  max-width: 42ch;
}

.hp-field {
  position: absolute;
  left: -9999px;
  opacity: 0;
  height: 0;
  width: 0;
}

@media (max-width: 720px) {
  .form-grid {
    grid-template-columns: 1fr;
  }

  .register-form {
    padding: 20px;
  }
}
