.container-info {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin: 30px;
  flex-wrap: wrap;
}
.container-info .completed {
  background-color: #85bd32 !important;
}
.container-info .info {
  position: relative;
  border: 1px solid #ccc;
  border-radius: 10px;
  width: 200px;
  height: 35px;
  font-size: 12px;
  text-align: center;
  align-items: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-decoration: none;
  color: #fff;
}
.container-info .info.active {
  background-color: #6C757D;
}
.container-info .info.disabled {
  opacity: 0.5;
}
.container-info .info .icon {
  position: absolute;
  top: -20px;
  left: -20px;
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  color: #000;
  background-color: #a867ee;
}
.container-info .info p {
  margin: auto;
}

@media (max-width: 768px) {
  .container-info {
    gap: 16px;
    margin: 15px;
  }
  .container-info .info {
    width: 100px;
    height: 90px;
    font-size: 10px;
    padding: 8px;
  }
  .container-info .info .icon {
    position: static;
    left: 0;
    bottom: 0;
  }
  .container-info .info p {
    padding-top: 0;
  }
}
.button-list .btn {
  min-width: 300px;
  padding: 0 30px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.2rem;
  font-weight: 600;
  background-color: transparent;
  border: 1px solid #fff;
  border-radius: 20px;
  position: relative;
}
.button-list .btn:hover, .button-list .btn:focus {
  background-color: #3fc141;
  border: 1px solid #3fc141;
}
.button-list .btn::after {
  content: "\f054";
  position: absolute;
  right: 15px;
  font-family: "Font Awesome 5 Pro";
}

body {
  overflow: hidden;
  background-color: #fff;
  color: #000;
}

* {
  font-family: "Montserrat", sans-serif;
}

.grecaptcha-badge {
  display: none;
}

.btn-primary {
  background-color: #3fc141;
  border-color: #3fc141;
  padding: 5px 30px;
  color: #fff;
  border-radius: 10px;
}
.btn-primary:hover {
  background-color: #0b0ba6;
  border-color: #0b0ba6;
}

h4 strong {
  font-weight: 900;
  display: inline-block;
  color: #3fc141;
  font-size: 2.5rem;
}
h4 span {
  font-size: 2.3rem;
  font-weight: 300;
  color: #3f3f3f;
}
h4 span strong {
  font-weight: 900;
  color: #3f3f3f;
  font-style: italic;
}
@media (max-width: 768px) {
  h4 strong {
    font-size: 2rem;
  }
  h4 span {
    font-size: 1.7rem;
  }
}

p {
  font-weight: 100;
  font-size: 1.2rem;
}
@media (max-width: 768px) {
  p {
    font-size: 1.1rem;
  }
}

.card {
  background-color: #0000fe;
  border-radius: 30px;
  padding: 40px;
  color: #fff;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
  min-height: 550px;
  justify-content: center;
}
.card .progress {
  height: 40px;
  border-radius: 20px;
}
@media (max-width: 992px) {
  .card .progress {
    height: 20px;
  }
}
.card .progress .progress-bar {
  background-color: #3fc141;
  border-radius: 20px;
}
.card .progress span {
  position: absolute;
  right: 50px;
  color: #0000fe;
  font-weight: 900;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}
@media (max-width: 992px) {
  .card .progress span {
    font-size: 0.7rem;
    height: 20px;
  }
}
.card form h5 {
  text-align: center;
  font-weight: 400;
  font-size: 2rem;
}
@media (max-width: 992px) {
  .card form h5 {
    font-size: 1.6rem;
  }
}
.card form h5 span {
  color: #3fc141;
  font-weight: 700;
}
.card form .form-control {
  background-color: #000;
  border: 1px solid #fff;
  color: #fff;
  border-radius: 20px;
  text-align: center;
  font-size: 1.2rem;
  margin: 25px 0;
}
.card form .form-control::-moz-placeholder {
  color: #fff;
}
.card form .form-control::placeholder {
  color: #fff;
}
@media (max-width: 992px) {
  .card form .form-control {
    font-size: 0.8rem;
  }
}
.card form button {
  background-color: #3fc141;
  color: #fff;
  padding: 10px 60px;
  border-radius: 35px;
  font-size: 1.4rem;
  font-weight: 900;
  margin-top: 30px;
  border: 0;
}
@media (max-width: 992px) {
  .card form button {
    margin-top: 20px;
    font-size: 0.8rem;
    padding: 10px 20px;
  }
}
