body {
  background-color: #EEF8F0;
  font-size: 16px;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
body::-webkit-scrollbar {
  display: none;
}
.progress {
  border-radius: 24px;
  height:10px;
  background-color: rgba(157, 235, 178,.4);
}
.progress-bar {
  background-color: var(--pry-color);
}
.divider {
  position: relative;
  border-bottom: 2px solid #E1E5E9;
  margin-block:30px;
}
.divider span {
  background-color: #EEF8F0;
  font-size: 14px;
  position: absolute;
  left: 45%;
  top:-10px;
  padding-inline:12px;
}
.btn-white {
  background-color: #ffffff !important;
  color: var(--pry-color) !important;
  border:1px solid var(--pry-lighter-pry);
}
.btn-pry {
  background-color: #F06F38 !important;
}
.btn-pry:focus {
  opacity: 1;
}
.w-lg-75 {
  width: 75%;
}
.input-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.styled-input {
    position: relative;
}

.styled-input input {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.styled-input label {
    display: block;
    padding: 10px 20px;
    background-color: white;
    border: 1px solid rgba(157, 235, 178,.4);
    border-radius: 8px;
    font-size: 15px;
    color: #333;
    cursor: pointer;
    transition: all 0.2s ease;
}

.styled-input input:checked + label {
    background-color: #d6f9df;
    border-color: var(--pry-color);
}

.styled-input:hover label {
    background-color: #f8fafc;
}

.styled-input input:focus + label {
    border: 1px solid var(--pry-color);
}
.custom-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    cursor: pointer;
}

.custom-checkbox input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.custom-checkbox .checkbox-box {
    min-width: 22px;
    width: 22px;
    height: 22px;
    border: 1px solid var(--pry-color);
    border-radius: 6px;
    background-color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    margin-top: 2px;
}

.custom-checkbox input[type="checkbox"]:checked + .checkbox-box {
    background-color: var(--pry-color);
    border-color: var(--pry-color);
}

.custom-checkbox .checkbox-box::after {
    content: '';
    display: none;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.custom-checkbox input[type="checkbox"]:checked + .checkbox-box::after {
    display: block;
}

.custom-checkbox:hover .checkbox-box {
    border-color: var(--pry-color);
}

.custom-checkbox input[type="checkbox"]:focus + .checkbox-box {
    border: 1px solid var(--pry-color);
}

.center {
  display: grid;
  place-items: center;
}

@media screen and (max-width:500px) {
  .w-lg-75 {
    width: 95%;
  }
}
