.detail_form,
.career_home {
    padding: 50px 0;
}

.career_home h1 {
    font-size: 25px;
    margin: 30px 0;
    font-weight: bold;
}

.career_home p {
    font-size: 15px;
    line-height: 20px;
}


.career_option {
    padding: 30px 0;
}

.career_option h6 {
    font-weight: 500;
    font-size: 20px;
}

.check_form {
    display: flex;
    padding: 12px;
    background-color: #fff;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.check_form input {
    margin-right: 10px;
    scale: 1.2;
}

.check_form label {
    cursor: pointer;
}

.custome_checkbox[type=checkbox] {
    position: relative;
    border: 2px solid #000;
    border-radius: 2px;
    background: none;
    cursor: pointer;
    line-height: 0;
    margin: 0 .6em 0 0;
    outline: 0;
    padding: 0 !important;
    vertical-align: text-top;
    height: 20px;
    width: 20px;
    scale: 1 !important;
    display: block;
    -webkit-appearance: none;
    opacity: .5;
}

.custome_checkbox[type=checkbox]:checked {
    background-color: #ff9a34;
    border: 2px solid #ff9a34;
    opacity: 1;
}

.custome_checkbox[type=checkbox]:before {
    content: '';
    position: absolute;
    right: 52%;
    top: 50%;
    width: 4px;
    height: 14px;
    border: solid #FFF;
    border-width: 0 2px 2px 0;
    margin: -1px -1px 0 -1px;
    transform: rotate(45deg) translate(-50%, -50%);
    z-index: 2;
}

.custome_checkbox[type=checkbox]::after {
    content: '';
    position: absolute;
    right: 47%;
    top: 79%;
    width: 6px;
    transform: rotate(52deg) translate(-50%, -50%);
    z-index: 2;
    height: 2px;
    background-color: #fff;
}



.detail_form .form {
    background: #fff;
    padding: 10px 40px 40px 40px;
    border-radius: 20px;
    box-shadow: 0 2px 13px #e8eaec;
    z-index: 1;
    position: relative;
}

.detail_form .form-group textarea,
.detail_form .form-group select,
.detail_form .form-group input {
    font-size: 14px;
    padding: 12px 15px;
    background: #f8f8f8;
    width: 100%;
    border-radius: 8px;
    transition: all ease 0.5s;
    box-sizing: border-box;
    border: 1px solid #D8D5D5;

}

.detail_form .form-group {
    margin-bottom: 15px;
}



.submit {
    padding: 12px !important;
}

.upload_file {
    position: relative;
}

.upload_file span {
    position: absolute;
    right: 17px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 14px;
    color: #717171;
}

@media(max-width:575px) {
    .detail_form .form{
        background: #fff;
        padding: 10px 20px 40px 20px;

    }

    .upload_file span {
        display: none;
    }
}