* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
}

body {
  min-height: 100vh;
  margin: 0;
  color: #666;
  background: #fff;
  font: 14px/24px "Poppins", sans-serif;
}

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

.page-shell {
  min-height: calc(100vh - 40px);
}

.site-header {
  position: relative;
  z-index: 3;
  height: 70px;
  background: #fff;
  box-shadow: 0 1px 2px rgba(0, 0, 0, .1);
}

.header-inner {
  width: 1170px;
  max-width: calc(100% - 30px);
  height: 70px;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
}

.brand {
  display: inline-flex;
  height: 70px;
  align-items: flex-start;
  padding-left: 30px;
  padding-top: 5px;
}

.brand img {
  width: 192px;
  height: 50px;
  display: block;
}

.desktop-nav {
  margin-left: auto;
  display: flex;
  align-items: stretch;
  height: 70px;
}

.desktop-nav a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 67px;
  height: 70px;
  padding: 0 18px;
  color: #222;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
}

.menu-button {
  display: none;
  width: 28px;
  height: 28px;
  margin: 21px 0 0 auto;
  padding: 0;
  border: 0;
  background: transparent;
}

.menu-button span {
  display: block;
  width: 26px;
  height: 2px;
  margin: 5px 0;
  background: #0068ac;
}

.main-content {
  padding-top: 150px;
  padding-bottom: 120px;
}

.verification-card {
  position: relative;
  width: 730px;
  min-height: 653px;
  margin: 0 auto;
  padding: 33px 30px 20px;
  background: #f7f7f7;
}

.verification-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 30px;
  width: 64px;
  height: 4px;
  background: #0068ac;
}

.verification-card h1 {
  height: 40px;
  margin: 0 0 15px;
  text-align: center;
  color: #626262;
  font-size: 20px;
  font-weight: 600;
  line-height: 40px;
}

.verification-card h1 a {
  color: #2872c7;
}

.divider {
  height: 1px;
  margin-bottom: 25px;
  background: #e4e4e4;
}

.identity-row {
  display: grid;
  grid-template-columns: 208px 1fr;
  column-gap: 30px;
  margin-bottom: 39px;
}

.photo-wrap {
  padding-left: 36px;
}

.applicant-photo {
  display: block;
  width: 152px;
  height: 203px;
  object-fit: cover;
}

dl {
  margin: 0;
}

.field {
  min-width: 0;
}

.field dt,
.field dd {
  margin: 0;
  color: #626262;
  font-size: 14px;
  line-height: 24px;
}

.field dt {
  font-weight: 400;
}

.identity-fields .field:not(:last-child) {
  margin-bottom: 20px;
}

.identity-fields .field {
  display: grid;
  grid-template-columns: 174px 1fr;
}

.identity-fields .field:not(.name-field) dt {
  font-weight: 700;
}

.visa-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 30px;
  row-gap: 59px;
}

.visa-grid .field {
  display: grid;
  grid-template-columns: 127px 1fr;
}

.login-button {
  display: block;
  width: max-content;
  min-width: 153px;
  margin: 24px auto 0;
  padding: 10px 16px;
  border: 1px solid #0068ac;
  background: #0068ac;
  color: #fff;
  text-align: center;
  font-size: 18px;
  line-height: 24px;
}

.site-footer {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  min-height: 40px;
  padding: 10px 15px;
  border-top: 1px solid #d9d9d9;
  background: #fff;
  color: #000;
  text-align: center;
  font-size: 14px;
  font-weight: 700;
  line-height: 20px;
}

.mobile-copy {
  display: none;
}

@media (max-width: 767px) {
  body {
    min-width: 320px;
  }

  .page-shell {
    min-height: auto;
  }

  .site-header,
  .header-inner {
    height: 70px;
  }

  .header-inner {
    width: auto;
    max-width: none;
    margin: 0;
    padding: 0 15px;
  }

  .brand {
    padding-left: 0;
    padding-top: 5px;
  }

  .desktop-nav {
    display: none;
  }

  .menu-button {
    display: block;
  }

  .main-content {
    padding: 72px 0 137px;
  }

  .verification-card {
    width: calc(100% - 60px);
    max-width: 352px;
    min-height: 0;
    padding: 38px 30px 20px;
  }

  .verification-card::before {
    left: 0;
    width: 64px;
  }

  .verification-card h1 {
    width: 100%;
    height: auto;
    margin-bottom: 28px;
    font-size: 18px;
    line-height: 40px;
  }

  .verification-card h1 span {
    display: block;
  }

  .divider {
    margin-bottom: 20px;
  }

  .identity-row,
  .identity-fields .field,
  .visa-grid,
  .visa-grid .field {
    display: block;
  }

  .identity-row {
    margin-bottom: 0;
  }

  .photo-wrap {
    padding-left: 0;
    display: flex;
    justify-content: center;
    margin-bottom: 21px;
  }

  .field {
    text-align: center;
  }

  .field dt,
  .field dd {
    font-size: 15px;
    line-height: 24px;
  }

  .identity-fields .field {
    margin-bottom: 24px;
  }

  .identity-fields .field:not(:last-child) {
    margin-bottom: 24px;
  }

  .identity-fields .field:not(.name-field) dt,
  .field dt {
    font-weight: 400;
  }

  .identity-fields .name-field dt {
    font-size: 13px;
    text-transform: uppercase;
  }

  .identity-fields .name-field dd {
    margin-top: 8px;
  }

  .visa-grid .field {
    margin-bottom: 24px;
  }

  .visa-grid .field dt {
    margin-bottom: 4px;
  }

  .login-button {
    margin-top: 1px;
    font-size: 18px;
  }

  .site-footer {
    position: static;
    min-height: 85px;
    padding: 14px 42px 28px;
    font-size: 14px;
    line-height: 22px;
  }

  .desktop-copy {
    display: none;
  }

  .mobile-copy {
    display: inline;
  }
}
