* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html,
body {
  height: 100%;
  width: 100%;
}

body {
  display: flex;
  flex-direction: column;
  background-color: #ffffff;
}

div.header {
  width: 100%;
  padding: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid #eef0f2;
  background-color: #ffffff;
}

button {
  appearance: none;
  padding: 0.75rem 1rem;
  border-radius: 12px;
  font-family: "Lato", sans-serif;
  font-weight: 700;
  font-style: normal;
  border-width: 1px;
  border-style: solid;
  min-width: 200px;
  cursor: pointer;
  margin-top: 0.75rem;
}

.button-filled {
  background-color: #257af3;
  color: #ffffff;
  border-color: #257af3;
}

.button-outline {
  background-color: #ffffff;
  color: #257af3;
  border-color: #257af3;
}

main {
  flex: 1;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

div.step-number {
  height: 40px;
  width: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #eef0f2;
  border-radius: 999999px;
  color: "#1B1E24";
  font-weight: 600;
  font-family: "Lato", sans-serif;
  background-color: #ffffff;
}

div.step-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

div.step-container {
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: start;
  justify-content: start;
  gap: 1rem;
}

span.title {
  font-family: "Poppins", sans-serif;
  color: "#1B1E24";
  font-weight: 600;
  font-size: 1rem;
}

span.subtitle {
  font-family: "Lato", sans-serif;
  color: #808285;
  font-size: 0.875rem;
  font-weight: 400;
  margin-top: 0.25rem;
}

div.grid-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: fit-content;
  z-index: -1;
}

div.content-container {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding: 1rem;
  width: 100%;
  max-width: 400px;
}

@media (min-width: 560px) {
  div.content-container {
    width: fit-content;
    max-width: unset;
  }
}

div.step-line {
  top: 20px;
  bottom: -1.5rem;
  left: 20px;
  width: 2px;
  z-index: -1;
  position: absolute;
  background-color: #eef0f2;
}
