.bg-limited-order {
  height: 100vh;
  background: rgb(248, 248, 247);
  background: radial-gradient(
    circle,
    rgba(248, 248, 247, 1) 0%,
    rgba(188, 178, 170, 1) 100%
  );
  font-family: "Montserrat", sans-serif;
}

.image-form-limited {
    display: flex;
    justify-content: center;
}
.image-form-limited img {
    width: auto;
    height: 320px;
}
.limited-h2-order {
    font-size: 30px;
    font-family: "Playfair Display", sans-serif;
    font-weight: 500;
    text-transform: uppercase;
    margin-bottom: 0;
}
.limited-subtitle-order {
    font-weight: 300;
}
.customselectbox {
    margin-top: 32px;
    position: relative;
    width: fit-content;
}
.customselectbox select {
    background-color: #3e2b2e;
    color: #fff;
    padding: 12px 60px 12px 10px;
    border: 2px solid #3e2b2e;
    appearance: none;
}

.customselectbox i {
    color: #fff;
    position: absolute;
    font-size: 18px;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
}

.limited-label {
    font-weight: 300;
}
.form-control-limited {
    background-color: transparent;
    padding: 10px 16px;
    border: 2px solid #fff;
    border-radius: 0px;
    height: 45px;
    box-shadow: none;
}
.form-control-limited:focus {
    outline: none;
    box-shadow: none;
    border: 2px solid #fff;
}

.custom-checkbox-limited[type="checkbox"] {
    appearance: none;
    width: 20px;
    height: 20px;
    background-color: transparent;
    border: 2px solid #fff;
    margin: 0;
    margin-right: 10px;
    margin-bottom: 8px;
}
.custom-checkbox-limited[type="checkbox"]:focus {
    outline: none;
} 
.custom-checkbox-limited[type="checkbox"]:checked {
    appearance: none;
    background-color: #3e2b2e;
    border-radius: 0px;
}
.form-group-limited {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 16px;
}
.border-danger {
    border: 2px solid #bd0000;
}
.customselectbox .border-danger {
    border: 2px solid #bd0000;
}
.text-danger {
    color: #bd0000;
}
.custom-checkbox-limited.border-danger {
    border: 2px solid #bd0000;
}
.customselectbox select:focus {
    outline: none;
}

.captcha-img {
    padding-bottom: 16px;
}

@media (min-width: 768px) {
    .image-form-limited img {
        height: 739px;
    }
}