/* Job Apply Area Shortcode Styles */
.job-apply-area-custom {
    background: transparent;
    color: #fff;
    padding: 0px 0 0px 0;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.job-apply-area-custom::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 10, 10, 0.76);
    z-index: 1;
}

.job-apply-area-inner {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 64px 80px;
    display: flex;
    flex-direction: row;
    gap: 48px;
    background: transparent;
    border-radius: 0;
    box-shadow: none;
    align-items: flex-start;
    box-sizing: border-box;
    position: relative;
    z-index: 2;
}

.job-apply-area-info {
    flex: 1;
    min-width: 320px;
    max-width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 36px;
}

.job-apply-area-info .job-apply-area-info-title {
    font-size: 2.1rem;
    font-weight: 700;
    margin-bottom: 18px;
    color: #fff;
    line-height: 1.1;
}

.job-apply-area-info .job-apply-area-info-block {
    margin-bottom: 12px;
}

.job-apply-area-info .job-apply-area-info-block strong {
    font-weight: 600;
    color: #fff;
}

.job-apply-area-info .job-apply-area-info-block a {
    color: #00FFFF;
    text-decoration: none;
    font-weight: 500;
    margin-left: 6px;
    vertical-align: middle;
}

.job-apply-area-form-col {
    flex: 1;
    min-width: 340px;
    max-width: 50%;
    display: flex;
    flex-direction: column;
    align-items: stretch;
}

.job-apply-area-form-col h2 {
    font-size: 2.1rem;
    font-weight: 700;
    margin: 0 0 18px 0;
    color: #fff;
    line-height: 1.1;
    text-align: left;
}

.job-apply-area-form-wrapper {
    width: 100%;
    background: transparent;
    border-radius: 0;
    box-shadow: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

@media (max-width: 900px) {
    .job-apply-area-inner {
        flex-direction: column;
        gap: 32px;
        padding: 64px 24px;
    }

    .job-apply-area-info,
    .job-apply-area-form-col {
        max-width: 100%;
        min-width: 0;
    }
}


.job-apply-form-grid {
    display: flex;
    flex-direction: column;
    gap: 18px;
    width: 100%;
}

.form-row {
    display: flex;
    gap: 18px;
    width: 100%;
}

.form-col {
    flex: 1 1 0;
}

.form-col-full {
    flex: 1 1 100%;
    width: 100%;
}

@media (max-width: 700px) {
    .form-row {
        flex-direction: column;
        gap: 0;
    }
}