body {
  font-family: "Atkinson Hyperlegible", sans-serif;
  font-size: 16px;
  background-color: #ffffff;
  color: #000000;
  margin: 0px;
  padding: 0px;
  overflow: auto;
}

section {
  min-height: 100vh;
  display: flex;
  overflow: auto;
  flex-direction: column;
  background-color: #ffffff;
}

section.row {
  flex-direction: row;
}

.main-page {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 3rem;
  justify-content: center;
}

.container {
  margin: 0px auto;
  display: flex;
  flex-direction: column;
  gap: 5rem;
  padding: 2rem;
  max-width: 1200px;
  align-items: center;
  overflow: scroll;
  min-height: 100vh;
}

.container.center {
  justify-content: center;
}

.logo {
  height: 40px;
  width: auto;
  position: absolute;
  top: 2rem;
  left: 2rem;
}

.main-image {
  height: 100vh;
  object-fit: cover;
}

p {
  color: rgba(0, 0, 0, 0.8);
  font-family: "Atkinson Hyperlegible", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  margin: 0px;
}

p.lg {
  font-size: 20px;
}

h1 {
  color: black;
  font-family: "Atkinson Hyperlegible", sans-serif;
  font-size: 48px;
  font-style: normal;
  font-weight: 700;
  line-height: 115%;
  margin: 0px;
}

h1.secondary {
  color: #136ef8;
  font-size: 36px;
  font-weight: 700;
}

h5 {
  color: rgba(0, 0, 0, 0.7);
  font-family: "Atkinson Hyperlegible", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 135%; /* 16.2px */
  letter-spacing: 4.68px;
  text-transform: uppercase;
  margin: 0px;
}

.links-box {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  width: 70%;
  gap: 1rem;
}

a {
  color: #136ef8;
}

a.card-button {
  text-decoration: none;
  color: black;
}

a.card-button * {
  transition: all 0.3s ease;
}

a.card-button div {
  display: flex;
  align-items: center;
  padding: 1rem 2rem;
  gap: 1rem;
  border-radius: 8px;
  background-color: white;
  font-family: "Atkinson Hyperlegible", sans-serif;
  font-size: 16px;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0px 4px 50px 0px rgba(0, 0, 0, 0.07);
}

a.card-button div span {
  flex: 1;
  color: black;
}

a.card-button:hover .arrow {
  transform: translateX(5px);
}

a.card-button:hover div {
  box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.2);
}

a.button {
  text-decoration: none;
  color: #136ef8;
}

a.button.secondary {
  padding: 12px 16px;
  border-radius: 8px;
  background-color: #25855a;
  color: white;
  font-size: 16px;
  text-align: center;
  border: none;
  display: none;
}

a.button.primary {
  padding: 12px 16px;
  border-radius: 8px;
  background-color: #136ef8;
  color: white;
  font-size: 16px;
  text-align: center;
  border: none;
  display: none;
}

section.centered {
  padding: 3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.steps {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-bottom: 24px;
}

.steps span {
  font-size: 16px;
  color: #136ef8;
  border-radius: 50%;
  border: 1px solid #136ef8;
  width: 24px;
  height: 22px;
  text-align: center;
  padding-top: 2px;
}

.steps span.active {
  background-color: #136ef8;
  color: white;
}

.form-container {
  margin-top: 24px;
  margin-bottom: 24px;
  padding: 32px;
  min-width: 600px;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0px 4px 50px 0px rgba(21, 28, 53, 0.07);
}

.form-container form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

input {
  display: flex;
  padding: 16px 12px;
  align-items: center;
  border-radius: 8px;
  border: 1px solid #718096;
  gap: 10px;
  font-size: 16px;
}

button {
  padding: 16px 12px;
  border-radius: 8px;
  background-color: #136ef8;
  color: white;
  font-size: 16px;
  border: none;
}

#error-messages {
  display: flex;
  flex-direction: column;
  padding: 15px 12px;
  align-items: flex-start;
  gap: 6px;
  align-self: stretch;
  border-left: 3px solid #9b2c2c;
  background: #fff5f5;
  display: none;
}
#error-messages p {
  color: #9b2c2c;
}

#success-messages {
  display: flex;
  flex-direction: column;
  padding: 15px 12px;
  align-items: flex-start;
  gap: 6px;
  align-self: stretch;
  border-left: 3px solid #25855a;
  background: #f3fff6;
  display: none;
}
#success-messages p {
  color: #25855a;
}
label {
  margin-top: 6px;
  font-size: 16px;
  font-weight: 700;
}

p.info {
  color: #3e3d3d;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
}

.search-container {
  margin-top: 24px;
  margin-bottom: 24px;
  padding: 32px;
  min-width: 600px;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0px 4px 50px 0px rgba(21, 28, 53, 0.07);
  display: flex;
  position: relative;
  flex-direction: column;
  gap: 1rem;
}
.results-container {
  border-radius: 10px;
  background: var(--Gray-100, #edf2f7);
  display: none;
  padding: 32px;
  flex-direction: column;
  align-items: flex-start;
}

.input-box {
  display: flex;
  flex-direction: row;
  padding: 6px;
  border: 1px solid #718096;
  border-radius: 8px;
}

.input-box input {
  border: none;
  padding: 6px;
  flex: 1;
}
.input-box button {
  padding: 6px 24px;
  border: none;
  background-color: #136ef8;
  color: white;
}

.results-container-dd {
  position: absolute;
  border-radius: 10px;
  background: white;
  display: none;

  box-shadow: 0px 4px 50px 0px rgba(21, 28, 53, 0.07);
  padding: 32px;
  flex-direction: column;
  align-items: flex-start;
  top: 85px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

@media screen and (max-width: 1200px) {
  section.row {
    flex-direction: column;
  }
  .logo {
    top: 1rem;
    left: 1rem;
  }

  .main-image {
    height: 40vh;
  }

  .main-page {
    padding: 8rem 1.5rem 3rem 1.5rem;
  }
  .links-box {
    width: 100%;
    margin-top: 0;
  }
  h1 {
    font-size: 34px;
  }
  .form-container {
    min-width: 100px;
    width: 100%;
  }
  .search-container {
    min-width: 100px;
    width: 100%;
  }
  .steps {
    margin-top: 32px;
  }
}
