body {
  font-family: "Inter", sans-serif;
  margin: 0;
  padding: 0;
}

h1 {
  text-align: center;
  line-height: 1.3;
  margin-top: 50px;
}

form {
  display: flex;
  flex-direction: column;
}

label {
  margin-top: 10px;
}

input, select {
  padding: 10px;
  margin-top: 5px;
}

table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
}

th, td {
  padding: 10px;
  border: 1px solid #ddd;
  text-align: left;
}

th {
  background: #f8f9fa;
}

form.main-form input, form.main-form button {
  height: 60px;
  border-radius: 10px;
}

form.main-form input::placeholder {
  color: #858585;
  font-size: 14px;
  font-weight: 500;
}

.timeline {
  margin-top: 20px;
}
.timeline ul {
  list-style-type: none;
  padding: 0;
}
.timeline ul li {
  position: relative;
  padding-left: 35px;
  margin-bottom: 25px;
}
.timeline ul li:last-child::before {
  display: none;
}
.timeline ul li::after {
  content: '';
  position: absolute;
  top: 2px;
  left: 5px;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  background-color: #bbb;
}
.timeline ul li::before {
  content: '';
  position: absolute;
  left: 14px;
  top: 22px;
  height: calc(100% + 5px);
  width: 2px;
  background-color: #bbb;
}
.timeline ul li.active::before {
  background-color: #0d6efd;
}
.timeline ul li.active::after {
  background-color: #0d6efd;
  background-image: url('./img/check2.svg');
  background-position: center;
}
.timeline ul li.active h6 {
  color: #000 !important;
}
.timeline ul li.active span {
  color: rgb(25, 135, 84) !important;
}
.timeline ul li h6, .timeline ul li span {
  color: #888 !important;
  font-weight: 600;
  margin: 0;
}
.timeline ul li p {
  margin: 0;
}
