section.job-section {
    position: relative;
    overflow: visible;
    column-gap: 70px;
    padding-top: 70px;
}

.job-section .job-description h4 {
    color: #F0684F;
    font-family: 'Poppins-Regular';
    font-size: 20px;
}

.job-section .back-button {
    position: absolute;
    top: 50px;
    left: 50px;
    transform: translate(-100%, 0);
}

.job-section .mw-form {
    width: 500px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.70);
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
}

.job-section .mw-form input,
.job-section .mw-form select {
    color: rgba(0, 0, 0, 0.80);
    font-family: 'Poppins-Regular';
    font-size: 16px;
    padding: 10px;
    border-radius: 10px;
    border: 1px solid rgba(0, 0, 0, 0.20);
    background: #E8E8E6;
    height: 40px;
}

.job-section .form-row {
    column-gap: 10px;
}

.job-section .form-row .form-group {
    width: 50%;
}

.job-section .file-input-container {
    border-radius: 10px;
    border: 1px dashed rgba(0, 0, 0, 0.20);
    background: #E8E8E6;
    height: 120px;
    padding: 0;
}

.job-section #resume-input {
    height: 120px;
    border: none;
}

.job-section .file-wrapper {
    text-align: center;
    vertical-align: middle;
    position: relative;
    overflow: hidden;
    background: #E8E8E6;
    width: 100%;
    height: 100%;
}


.file-wrapper input {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    cursor: pointer;
    opacity: 0.0;
    filter: alpha(opacity=0);
    height: 100%;
    width: 100%;
    text-transform: uppercase;
}

.job-section .mw-form .mw-button {
    margin-top: 100px;
    padding: 7px 30px;
}

@media screen and (max-width: 989px) {
    section.job-section {
        flex-direction: column;
        row-gap: 50px;
    }

    .job-section .mw-form {
        width: 100%;
    }
}