.form-group label,
.checkbox label {
    font-size: 18px;
}

.questionnareContainer {
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 9px;
    padding: 1rem;
}

.animated-progress {
    width: 300px;
    height: 20px;
    border-radius: 5px;
    margin: 20px 10px;
    border: 1px solid #BB5F44;
    overflow: hidden;
    position: relative;
}

.animated-progress span {
    height: 100%;
    display: block;
    width: 0;
    color: rgb(255, 251, 251);
    line-height: 20px;
    position: absolute;
    text-align: end;
    padding: 0px 5px;
}

.progress-blue span {
    background-color: #BB5F44;
}



.cyberpunk-button {
    background-color: #548E99;
    color: #fff;
    font-size: 18px;
    border: none;
    border-radius: 5px;
    padding: 15px 25px;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}

.cyberpunk-checkbox {
    appearance: none;
    width: 20px;
    height: 20px;
    border: 2px solid #548E99;
    border-radius: 5px;
    background-color: transparent;
    display: inline-block;
    position: relative;
    margin-left: 10px;
    cursor: pointer;
    margin-bottom: 0px !important;
}

.cyberpunk-checkbox:before {
    content: "";
    background-color: #548E99;
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    width: 10px;
    height: 10px;
    border-radius: 3px;
    transition: all 0.3s ease-in-out;
}

.cyberpunk-checkbox:checked:before {
    transform: translate(-50%, -50%) scale(1);
}

.cyberpunk-checkbox-label {
    font-size: 18px;
    color: #26313c;
    cursor: pointer;
    user-select: none;
    display: flex !important;
    align-items: center;
}