.errorlist {
    color: #ff0000;
    font-size: 14px;
    margin-top: 5px;
}



.checkbox-group {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.checkbox-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 12px;
    border-radius: 20px;
    border: 1px solid #bebebe;
    background-color: rgba(255, 234, 0, 0.06);
    color: #1f1c0b;
    cursor: pointer;
    transition: 0.3s;
    font-size: 14px;
}

.checkbox-btn input {
    display: none;
}

.checkbox-btn.checked {
    background-color: #1f1c0b;
    color: #eae17a;
}

.file-upload {
    position: relative;
    display: flex;
    align-items: center;

    padding: 12px;
    border-radius: 26px;
    border: 1px solid #c9c8c8;
    background-color: #ffea000f;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    text-align: left;
}
.file-upload:hover {
    border-color: #d5c402;
    background-color: #ffea000f;
}
.file-upload input {
    display: none;
}
.upload-icon {
    font-size: 24px;
    margin-right: 10px;
    color: #007bff;
}

.file-upload-label {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 10px;
    display: block;
    color: #333;
}
.selected-file {
    margin-right: 1%;
    font-size: 15px;
    color: rgb(31 28 12);

}