* {
  box-sizing: border-box;
  font-family: "Roboto", sans-serif;
}

body {
  margin: 0;
  padding: 0;
  height: 100vh;
  background-color: #f6f7fb;
  overflow: hidden;
}

main {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: center;
}

.container {
  text-align: center;
}

.progress-container {
  display: flex;
  justify-content: space-between;
  position: relative;
  margin: 0 0 30px 0;
  max-width: 100%;
  width: 350px;
}

.progress-container::before {
  content: " ";
  background-color: #e0e0e0;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  height: 4px;
  width: 100%;
  z-index: -1;
}

.progress {
  background-color: #3498db;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  height: 4px;
  width: 0%;
  z-index: -1;
  transition: 0.5s ease;
}

.circle {
  background-color: #ffffff;
  color: #999;
  padding: 5px 10px;
  border-radius: 50%;
  border: solid 3px #e0e0e0;
  transition: 0.5 ease;
}

.circle.active {
  border-color: #3498db;
}

.btn {
  padding: 8px 30px;
  background-color: #3498db;
  color: #ffffff;
  border-radius: 6px;
  border: 0;
  cursor: pointer;
  font-size: 14px;
  margin: 5px;
}

.btn:active {
  transform: scale(0.98);
}

btn:focus {
  outline: 0;
}

.btn:disabled {
  background-color: #e0e0e0;
  cursor: not-allowed;
}
