.logo {
  position: absolute;
  top: 0px;
  right: 0px;
  height: 170px;
  padding: 30px;
}

header {
  padding: 20px;
}

.title {
  font-family: "Playfair Display";
  font-size: 50px;
  color: white;
  margin: 18px 0;
  text-transform: uppercase;
  text-align: center;
}

/* |-----------------| Step Progressbar - Start |-----------------| */

#progress {
  position: relative;
  margin-bottom: 30px;
}

#progress-bar {
  position: absolute;
  background: lightseagreen;
  height: 5px;
  width: 0%;
  top: 50%;
  left: 0;
}

#progress-num {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  justify-content: space-between;
}

#progress-num::before {
  content: "";
  background-color: white;
  position: absolute;
  top: 48%;
  left: 0;
  height: 5px;
  width: 98%;
  padding-left: 1%;
  z-index: -1;
}

#progress-num .step {
  border: 3px solid #f196bf;
  border-radius: 100%;
  width: 50px;
  height: 50px;
  line-height: 25px;
  text-align: center;
  background-color: white;
  font-family: sans-serif;
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
}

#progress-num .step p {
  color: white;
  position: relative;
  top: 50px;
}

#progress-num .step.active {
  border-color: white;
  background-color: #f196bf;
}

/* |------------------| Step Progressbar - End |------------------| */