.form_f{
    display: flex;
    align-items: center;
    width: 100%;
}
.form_f img{
    height: 25px;
    width: auto;
}
.form_f input{
    border: none;
    background-color: transparent;
}
.form_f input:focus{
    box-shadow: none;
}
.form_all_jobs{
    background-color: var(--color-white);
    border: 1px solid rgba(0,0,0,0.2);
    padding: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    gap: 20px;
    width: 80%;
    border-radius: 5px;
}

.line_f_f{
    width: 2px;
    height: 30px;
    background-color: rgba(0,0,0,0.2);
}
@media screen and (max-width: 1600px){
    .rand_grid2{
        grid-gap: 20px;
    }
}
@media screen and (max-width: 1400px){
    .rand_grid2{
        grid-template-columns: repeat(2,1fr);
        grid-gap: 20px;
    }
}

@media screen and (max-width: 1200px){
    .form_all_jobs{
        width: 100%;
    }
}
@media screen and (max-width: 768px){
    .form_all_jobs{
        padding: 10px 12px;
    }
    .form_f input{
        font-size: 12px;
    }
}
@media screen and (max-width: 568px){
    .rand_grid2 {
        grid-template-columns: repeat(1,1fr);
        grid-gap: 20px;
    }
    .form_all_jobs{
        gap: 5px;
    }
    .form_f img {
        height: 15px;
        width: auto;
    }
    .form_f input{
        padding-left: 5px;
    }
    .line_f_f{
        height: 20px;
    }
}