.job-layout {
    display: inline-flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 0 389px;
    gap: 119px;
    box-sizing: border-box;
}
.job-description {
    width: 50%;
    padding-right: 20px;
    padding-bottom: 30px;
}

/*.submit-cv {*/
/*    border: 1px solid #e3e3e3;*/
/*    background: rgba(189, 186, 186, 0.14);*/
/*    display: flex;*/
/*    flex-direction: column;*/
/*    justify-content: flex-end;*/
/*    align-items: center;*/
/*    margin-top: 50px;*/
/*    gap: 10px;*/
/*    max-width: 336px;*/
/*    min-width: 336px;*/
/*}*/

/*.col-start label{*/
/*    display: flex;*/
/*    flex-direction: column;*/
/*    justify-content: center;*/
/*    align-items: center;*/
/*    gap: 10px;*/
/*    align-self: stretch;*/
/*    text-align: left;*/
/*}*/


/*.submit-cv h3 {*/
/*    color: #525252;*/
/*    text-align: center;*/
/*    font-family: Poppins;*/
/*    font-size: 24px;*/
/*    font-style: normal;*/
/*    font-weight: 700;*/
/*    line-height: normal;*/
/*}*/

#career-job .job-description h3 {
    color: #525252;
    font-family: Poppins;
    font-size: 32px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-align: left;
    padding-top: 25px;
}

#career-job .job-description p {
    color: #525252;
    font-family: Poppins;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-align: left;
}

#career-job .job-description ul {
    display: block;
    list-style-type: disc;
    margin-block-start: 1em;
    margin-block-end: 1em;
    margin-inline-start: 0px;
    margin-inline-end: 0px;
    padding-inline-start: 40px;
    unicode-bidi: isolate;
    text-align: left;
}


/* Form container styling */
form.submit-cv {
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    padding: 25px;
    width: 100%;
    max-width: 450px;
    margin-top: 40px;
}

/* Heading style */
h3 {
    color: #4a4a4a;
    font-size: 20px;
    margin-bottom: 20px;
    font-weight: 600;
}

/* Column layout for form elements */
.col-start {
    display: flex;
    flex-direction: column;
    margin-bottom: 15px;
    width: 100%;
}

/* Label styling */
label {
    color: #4a4a4a;
    font-size: 14px;
    margin-bottom: 5px;
    font-weight: 500;
    text-align: left;
}

/* Input container for consistent styling */
.input-container {
    width: 100%;
}

/* Input fields styling */
input[type="text"],
input[type="email"],
input[type="tel"] {
    width: 100%;
    padding: 10px;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    font-size: 14px;
    color: #4a4a4a;
}

input[type="text"]::placeholder,
input[type="email"]::placeholder,
input[type="tel"]::placeholder {
    color: #bbbbbb;
}

/* File upload section */
.row {
    display: flex;
    flex-direction: column;
    width: 100%;
    border: 1px dashed #ccc;
    border-radius: 4px;
    padding: 15px;
    background-color: #f9f9f9;
    position: relative;
    min-height: 80px;
    justify-content: center;
    align-items: center;
}

/* Hide the default file input */
.file {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
}

/* Upload text styling */
.upload-text {
    color: #2196F3;
    font-size: 14px;
    text-align: center;
    margin-bottom: 5px;
}

/* File size limit text */
.file-limit {
    color: #999;
    font-size: 12px;
    text-align: center;
}

/* Submit button styling */
.submit {
    background-color: #2196F3;
    color: white;
    border: none;
    border-radius: 4px;
    padding: 10px 20px;
    font-size: 14px;
    cursor: pointer;
    width: 100px;
    text-align: center;
    margin-top: 10px;
}

.submit:hover {
    background-color: #0d8aee;
}

/* Upload area full width */
.upload-area {
    width: 100%;
    text-align: center;
}