.container-top {
  background-image: url("/assets/img/banner-form.webp");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
}
.container-top img {
  z-index: 99;
  position: relative;
}
.container-top .page-title {
  font-weight: 700;
  margin-bottom: 50px;
  color: #fff;
  text-transform: uppercase;
  font-size: 2rem;
  z-index: 99;
  position: relative;
}
.container-top p {
  color: #fff;
  font-weight: 200;
  z-index: 99;
  position: relative;
}
.container-top::before {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-color: rgba(0, 34, 88, 0.9);
}
.container-top::after {
  position: absolute;
  z-index: 1;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100px;
  content: "";
  background-image: linear-gradient(to top, #002258, transparent);
}

.form-group {
  position: relative;
  padding-left: 55px;
  margin-bottom: 35px;
}
.form-group > span {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #E9B400;
  color: #002258;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  position: absolute;
  top: 0;
  left: 0;
  font-size: 15px;
  font-weight: 500;
  transition: 0.2s ease;
}
.form-group.active > span {
  background-color: #002258;
  color: #fff;
}
.form-group > label {
  font-size: 15px;
  line-height: 40px;
}
@media (max-width: 992px) {
  .form-group > label {
    line-height: 15px;
    margin-bottom: 15px;
  }
}
.form-group .form-control {
  background-color: #DFDFDF;
  border-radius: 0;
}
.form-group .form-check {
  position: relative;
  padding-left: 20px;
  margin-right: 40px;
  line-height: 30px;
}
.form-group .form-check input[type=radio], .form-group .form-check input[type=checkbox] {
  opacity: 0;
}
.form-group .form-check .form-check-label {
  padding-left: 20px;
  margin-bottom: 15px;
}
.form-group .form-check::before, .form-group .form-check::after {
  content: "";
  position: absolute;
  left: 0;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: #DFDFDF;
  transition: 0.2s ease;
}
.form-group .form-check::after {
  animation: 0.2s checkedOut forwards;
}
.form-group .form-check.check-multiple::after, .form-group .form-check.check-multiple::before {
  border-radius: 3px;
}
.form-group .form-check::after {
  width: 0;
  height: 0;
  background-color: #E9B400;
}
.form-group .form-check.checked::after {
  animation: 0.2s checked forwards;
}

.btn-primary {
  background-color: #002258;
  border-color: #002258;
  border-radius: 25px;
  color: #fff;
  padding: 5px 20px;
}
.btn-primary strong {
  font-weight: 800;
}

@keyframes checked {
  from {
    width: 0;
    height: 0;
    left: 15px;
    top: 15px;
  }
  to {
    width: 20px;
    height: 20px;
    left: 5px;
    top: 5px;
  }
}
@keyframes checkedOut {
  from {
    width: 20px;
    height: 20px;
    left: 5px;
    top: 5px;
  }
  to {
    width: 0;
    height: 0;
    left: 15px;
    top: 15px;
  }
}
