* {
  box-sizing: border-box;
}
html,
body {
  height: 100%;
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
  background-color: #ffffff;
}
.container {
  display: flex;
  height: 100%;
}
.sidebar {
  position: relative;
  flex: 0 0 20rem;
  background-color: #ffffff;
  color: #494d61;
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow-y: hidden;
}
@media screen and (max-width: 1300px) {
  html,
  body,
  .container {
    height: auto;
  }
  .sidebar {
    display: none;
  }
}
.sidebar-logo-wrapper {
  position: relative;
}
.sidebar-logo {
  display: block;
  height: 3em;
  margin-bottom: 0;
}
.sidebar-logo-letter {
  position: absolute;
  color: white;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.sidebar-title-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 5rem;
}
.sidebar-title {
  text-align: center;
  font-size: 1.125rem;
  margin-bottom: 0.625rem;
}
.content {
  position: relative;
  flex: 1;
  margin: 0 auto;
  padding: 1.25rem;
  background-color: #f2f2f2;
  color: #494d61;
}
.main-content {
  position: relative;
  padding-top: 5rem;
}
@media screen and (max-width: 1300px) {
  .main-content {
    padding-top: 1rem;
    padding-bottom: 5rem;
  }
}
.contact-link-container {
  position: absolute;
  right: 3rem;
  top: 1.5rem;
}
@media screen and (max-width: 1300px) {
  .contact-link-container {
    right: auto;
    top: auto;
    left: 50%;
    bottom: 1.5rem;
    translate: -50%;
  }
}
h1 {
  color: #494d61;
}
p {
  margin-bottom: 1.25rem;
  line-height: 1.6;
}
.cta-button {
  display: block;
  width: 12.5rem;
  padding: 1.25em 1em;
  text-align: center;
  color: #ffffff;
  background-color: #7f5af0;
  text-decoration: none;
  border-radius: 0.25rem;
  border: none;
  cursor: pointer;
}
@media screen and (max-width: 1300px) {
  .cta-button {
    width: 100%;
  }
}
.step-list {
  list-style: none;
  padding: 0;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: start;
  gap: 1.5rem;
  z-index: 1;
}
.step-list.step-list-mobile {
  display: flex;
  align-items: center;
}
@media screen and (min-width: 1300px) {
  .step-list.step-list-mobile {
    display: none;
  }
}
.step-list-item {
  margin-bottom: 0.625rem;
  font-weight: bold;
}
.step-number {
  display: inline-block;
  width: 1.5rem;
  height: 1.5rem;
  background-color: #ffffff;
  color: #494d61;
  text-align: center;
  line-height: 1.5rem;
  border-radius: 50%;
  margin-right: 0.625rem;
  border: 1px solid #494d61;
}
.step-list-item.completed .step-number {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  background-color: #0bc374;
  color: #ffffff;
  border: 1px solid #0bc374;
}
.step-list-item.completed .step-name {
  color: #939599;
}
.step-list-item.completed img {
  height: 60%;
  width: 60%;
}
.step-list-item.active .step-number {
  color: #5d5fef;
  border: 1px solid #5d5fef;
}
.step-list-item.active .step-name {
  color: #5d5fef;
}
.contact-link {
  text-align: right;
  color: #5d5fef;
  text-decoration: none;
  font-weight: bolder;
}
.sidebar-rectangle1 {
  position: absolute;
  left: 0;
  bottom: 0;
  height: 10rem;
  width: 20rem;
  transform: rotate(45deg) translate(-20%, 100%);
  background: #ecf4ff;
}
.sidebar-rectangle2 {
  position: absolute;
  left: 0;
  bottom: 0;
  height: 10rem;
  width: 20rem;
  transform: rotate(39deg) translate(-20%, 90%);
  background: #f4f6f8;
}
.blurred-block {
  height: 2em;
  border-radius: 1em;
  background-color: #d9d9d9;
}
.blurred-block.bb1 {
  width: 40ch;
}
.blurred-block.bb2 {
  width: 60ch;
}
.blurred-block.bb3 {
  width: 80ch;
}
.blurred-block.bb4 {
  width: 70ch;
}
.blurred-block.bb5 {
  width: 70ch;
}
.blurred-block.bb6 {
  width: 70ch;
}
.blurred-block.bb7 {
  width: 50ch;
}
@media screen and (max-width: 1300px) {
  .blurred-block {
    height: 4em;
    border-radius: 0.25em;
  }
  .blurred-block.bb1 {
    width: 100%;
  }
  .blurred-block.bb2 {
    width: 100%;
    height: 8em;
  }
  .blurred-block.bb3 {
    width: 100%;
  }
  .blurred-block.bb4 {
    width: 100%;
    height: 8em;
  }
  .blurred-block.bb5 {
    width: 50%;
  }
  .blurred-block.bb6 {
    width: 100%;
  }
  .blurred-block.bb7 {
    width: 35%;
  }
}
.setting-form {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.setting-button {
  display: block;
  width: 12.5rem;
  padding: 0.5em;
  text-align: center;
  color: #ffffff;
  background-color: #7f5af0;
  text-decoration: none;
  border-radius: 0.25rem;
  border: none;
  cursor: pointer;
}
