body, html {
  padding: 0;
  margin: 0;
}

body {
  background-color: rgb(45 43 38);
  color: rgb(104, 106, 115);
  white-space: normal;
  word-break: break-all;
}

ul {
  margin: 0;
  padding-left: 1em;
}

li {
  margin: 5px 0;
}

.head-bg {
  background-image: url('bg.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 200px;
}

.linear-gradient {
  background: radial-gradient(rgb(69 69 56) 0%,rgb(45 43 38) 61%);
  width: 200vw;
  height: 200vh;
  position: fixed;
  bottom: -132vh;
  z-index: -1;
  right: -100vw;
}

.form, .finish {
  margin: 0 20px;
  position: relative;
}



input[type="radio"], input[type="checkbox"] {
  opacity: 0;
  width: 0;
  height: 0;
}

.radio {
  height: 15px;
  width: 15px;
  background-color: #eee;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  margin-right: 10px;
}

.radio::after {
  position: absolute;
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

input[type="radio"]:checked ~ .radio::after {
  background: #afd336;
}

.checkbox {
  height: 15px;
  width: 15px;
  background-color: #eee;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  margin-right: 10px;
}

.checkbox::after {
  position: absolute;
  content: "";
  display: block;
  width: 10px;
  height: 10px;
}

input[type="checkbox"]:checked ~ .checkbox::after {
  width: 8px;
  height: 15px;
  border: solid #afd336;
  border-width: 0 3px 3px 0;
  transform: rotate(45deg);
  top: -6px;
}



.head-bg {
  width: 100%;
}

.form {
  width: calc(100% - 40px);
}

.container {
    
    margin-right: auto;
    margin-left: auto;
    width: 100vw;
  }

  
.text-center {
  text-align: center;
}

label {
    display: flex;
    align-items: center;
    padding: 5px 0;
}

.d-none {
  display: none;
}

.text-danger {
  color: rgb(255, 102, 0);
  font-size: 12px;
  margin-left: 1.5em;
  margin-top: 0.5em;
}

button {
  border: 1px solid #c5df72;
  padding: 8px 15px;
  border-radius: 20px;
  background: #afd336;
  color: #4a6000;
  box-shadow: 0 0 1px #9b9b9b;
  margin-top: 20px;
  font-size: 16px;
}

button[disabled] {
  background: #e2f2ac;
  color: #bcbcbc;
}

textarea {
  width: 100%;
  border: 1px solid #d3b736;
  border-radius: 5px;
  min-height: 200px;
  padding: 1em 1.5em;
}

.email {
  width: 100%;
  border: 1px solid #d3b736;
  border-radius: 5px;
  padding: 1em 1.5em;
}

.my-slider-progress {
  background: #e2f2ac;
  height: 8px;
  border-radius: 10px;
  overflow: hidden;
}

.my-slider-progress-bar {
  background: #afd336;
  height: 8px;
  transition: width 400ms ease;
  border-radius: 15px;
}

.card {
  border: 1px solid #2a2a2a;
  box-shadow: 3px 6px 14px #212121;
  border-radius: 10px;
  width: calc(100% - 20px);
  background: white;
  margin: 0 auto;
  overflow: hidden;
}

.splide-step {
  margin: 20px 0 0;
}

.splide__slide {
  padding: 0 2px;
}

.mt-2 {
  margin-top: 1em;
}

.mt-4 {
  margin-top: 2em;
}

.mb-2 {
  margin-bottom: 1em;
}

.pl-6 {
  padding-left: 3em;
}

@media (min-width: 768px) {
  .container {
    padding-right: 15px;
    padding-left: 15px;
    width: 400px;
  }
  .card {
    display: flex;
    width: 700px;
  }
  .head-bg, .finish {
    height: auto;
  }
  .head-bg, .form, .finish {
    width: 50%;
  }

  .splide {
    padding: 0 0 20px 0;
    
  }

  .finish {
    align-items: center;
    justify-content: center;
    min-height: 616px;
  }
  
  button {
    font-size: 13px;
    border-radius: 17px;
  }
}

svg {
  display: inline;
}