.careers-section {
    background: url('../../assets/uploads/careers/careers-bg-ce.png') no-repeat center center/cover;
    padding: 20px 20px;
    color: white;
    position: relative;
}

.overlay {
    padding: 60px 20px;
}

.careers-container {
    max-width: 900px;
    margin: auto;
    text-align: center;
}

.careers-container h2 {
    font-size: 28px;
    margin-bottom: 20px;
    font-weight: bold;
}

.careers-container p {
    text-align: justify;
    text-align-last: center;
    font-size: 16px;
    max-width: 900px;
    margin: auto auto 40px;
    line-height: 1.6;
}

.careers-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: flex;
    flex-direction: row;
    gap: 20px;
    flex-wrap: wrap;
}

.form-row input,
textarea {
    flex: 1;
    padding: 15px;
    border-width: 1px;
    border-color: rgb(81, 81, 81);
    border-style: solid;
    background-color: rgb(37, 37, 37);
    color: rgb(149, 149, 149);
    font-size: 14px;

}

textarea {
    width: 100%;
    resize: none;
}

.file-upload {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    border-width: 1px;
    border-color: rgb(81, 81, 81);
    border-style: solid;
    background-color: rgb(37, 37, 37);
    padding: 15px;
    color: rgba(149, 149, 149, 0.733);
    cursor: pointer;
    position: relative;
}

.file-upload input[type="file"] {
    display: none;
}

.file-upload .icon {
    font-style: normal;
}

.form-buttons {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.reset-btn,
.submit-btn {
    padding: 12px 40px;
    border: none;
    font-weight: bold;
    font-size: 14px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.reset-btn {
    background: transparent;
    border: 2px solid white;
    color: white;
}

.submit-btn {
    background: rgb(230, 214, 26);
    color: black;
}

/* Responsive */
@media (max-width: 768px) {
    .form-row {
        flex-direction: column;
    }

    .careers-container h2 {
        font-size: 24px;
    }

    .careers-container p {
        font-size: 15px;
    }
}

.lucide-icon {
    width: 18px;
    height: 18px;
    stroke: rgba(149, 149, 149, 0.733);
}

@media (max-width: 480px) {

    .reset-btn,
    .submit-btn {
        padding: 12px 30px;
    }
}

@media (min-width: 2160px) {
    .careers-container {
        max-width: 1400px;
    }
    .careers-container p {
        max-width: 1400px;
    }
}