.form-control,
.upload-box {
    background-color: #E0EDCA66;
    border: 1px solid #6F874B;
    border-radius: 50px;
    padding: var(--spacing-2);
}

.form-control-secondary {
    background-color: #ffe9ce51;
    border: 1px solid #FFE9CE;
    border-radius: 50px;
}

.form {
    border-radius: clamp(25px, 2.6vw, 2.6vw);
    position: relative;
}

textarea {
    border-radius: 10px !important;
}


.upload-box {
    position: relative;
    border-radius: 8px;
    padding: var(--spacing-2);
    cursor: pointer;
    min-height: 90px;
    text-align: center;
    color: #495057;
    
    display: flex;
    align-items: center;
    justify-content: center;
}

.upload-box:hover {
    background-color: #f8f9fa;
}

.upload-box i {
    color: #6c757d;
}

.upload-box .file-input {
    position: absolute;
    height: 100%;
    width: 100%;
    opacity: 0;
    top: 0;
    left: 0;
    cursor: pointer;
}

.form-action-div {
    background-color: white;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 10px;
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    box-shadow: 1px 1px 10px #0000002b;
    gap: 10px;
}

button {
    border-radius: 30px;
    padding: 10px 40px;
    font-size: clamp(18px, 1.25vw, 1.25vw);
}

.back-button {
    background-color: white;
    border: 1px solid var(--green1);
    color: var(--green1);
}

.next-button,
.submit-button {
    background-color: var(--green1);
    color: white;
    border: none;
}

input[type="radio"], input[type="range"] {
   accent-color: var(--green1) !important;
}

.form-fruit {
    position: absolute;
    right: 50px;

}











.rating {
    display: flex;
    align-items: center;
}

.rating-step {
    display: flex;
    align-items: center;
    cursor: pointer;
}

.rating-step input {
    display: none;
}

.step {
    width: 24px;
    height: 24px;
    border: 2px solid #7a9155;
    border-radius: 50%;
    background-color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 12px;
    color: #7a9155;
    transition: background-color 0.3s, color 0.3s, border-color 0.3s;
}

.line {
    height: 2px;
    width: 20px;
    background-color: #E0EDCA66;
    flex-grow: 1;
    margin: 0 4px;
    transition: background-color 0.3s;
}

/* Active or Hovered */
.rating-step:hover ~ .rating-step .step,
.rating-step:hover ~ .rating-step .line,
.rating-step:has(input:checked) ~ .rating-step .step,
.rating-step:has(input:checked) ~ .rating-step .line {
    /* don't change future items */
}



/* .rating-step:hover .line,
.rating-step:hover ~ .rating-step .line,
.rating-step:has(input:checked) .line,
.rating-step:has(input:checked) ~ .rating-step .line {
    background-color: #5b7832bb;
} */

.rating-step.hovered .line {
    background-color: #5b7832;
}

.rating-step.hovered .step {
  border-color: #5b7832;
  color: white;
  background-color: #5b7832;
}
.file-pill {
  display: flex;
  margin-top: var(--spacing-2);
  padding: var(--spacing-1);
  background: #ffffff;
  border-radius: 1rem;
  justify-content: space-between;
  align-items: center;
}

/* the filename text */
.file-pill__name {
  color: #333;
}

/* the remove button */
.file-pill__remove {
  margin-left: 0.5rem;
  border: none;
  background: transparent;
  cursor: pointer;
  line-height: 1;
  vertical-align: middle;
  color: red;
}
@media screen and (max-width:992px){
    .form.p-8{
        padding: var(--spacing-2) !important;
    }
    .form-fruit{
        display:none;
    }
}