.career-hero {
    padding: 120px 20px 80px;
    background: linear-gradient(180deg, #ffffff 0%, #f4f8fd 100%);
    text-align: center;
}

.career-hero h1 {
    font-size: 42px;
    font-weight: 700;
    color: var(--primary, #0d6efd);
    margin-bottom: 14px;
}

.career-hero p {
    font-size: 16px;
    color: #555;
    max-width: 680px;
    margin: 0 auto;
    line-height: 1.7;
}

.career-form {
    padding: 80px 20px;
    background: #ffffff;
}

.career-container {
    max-width: 1100px;
    margin: 0 auto;

    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: stretch;
}

.career-left {
    padding: 20px;
}

.career-left h3 {
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--primary);
}

.career-benefits {
    margin-top: 10px;
    padding-left: 25px;
    list-style: circle;
}

.career-benefits li {
    margin-bottom: 12px;
    font-size: 20 px;
    color: #4b5563;
    font-weight: 500;
    line-height: 1.6;
    gap: 8px;
}


.form-right {
    background: #ffffff;
    border-radius: 12px;
    padding: 40px;

    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.form-field {
    margin-bottom: 20px;
}

.form-field p {
    margin-bottom: 6px;
    font-size: 14px;
    font-weight: 600;
    color: var(--primary);
}

.form-field input,
.form-field select {
    width: 100%;
    padding: 12px 14px;

    border: 1px solid #ddd;
    border-radius: 6px;

    font-size: 14px;
    outline: none;

    transition: border-color 0.3s, box-shadow 0.3s;
}

.form-field input:focus,
.form-field select:focus {
    border-color: #0d6efd;
    box-shadow: 0 0 0 3px rgba(13, 110, 253, 0.1);
}

.form-field input[type="file"] {
    width: 100%;
    padding: 8px;
    font-size: 14px;
    border: 1px solid #ddd;
    border-radius: 6px;
    background: #fff;
    cursor: pointer;
}

/* Style the actual button */
.form-field input[type="file"]::file-selector-button {
    padding: 8px 16px;
    margin-right: 12px;
    border: none;
    border-radius: 6px;
    background: linear-gradient(135deg, #0A2540, #0d3b66);
    color: #fff;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.form-field input[type="file"]::file-selector-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(13, 110, 253, 0.25);
}

.form-right button {
    padding: 10px 22px;
    border-radius: 10px;
    background: linear-gradient(135deg, #0A2540, #0d3b66);
    width: 100%;
    color: #fff;
    font-weight: 500;
    border: none;
    cursor: pointer;
    box-shadow: 0 8px 20px rgba(10, 37, 64, 0.25);
    transition: all 0.55s cubic-bezier(0.22, 1, 0.36, 1);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.form-right button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(13, 110, 253, 0.25);
    background: linear-gradient(135deg, #143e68, #0d3b66);
    transition: .3s;
}

/* Responsive */
@media (max-width: 900px) {
    .career-container {
        grid-template-columns: 1fr;
    }

    .career-left {
        min-height: 180px;
    }

    .career-hero h1 {
        font-size: 32px;
    }
}