/*==================================================
CAREER FORM SECTION
==================================================*/

.career-form-section {
    position: relative;
    background: var(--light);
    overflow: hidden;
}

.career-form-section::before {
    content: "";
    position: absolute;
    right: -180px;
    top: -180px;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: rgba(20, 175, 195, .06);
}

.career-form-section::after {
    content: "";
    position: absolute;
    left: -120px;
    bottom: -120px;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: rgba(20, 175, 195, .05);
}

.career-form-section .container {
    position: relative;
    z-index: 2;
}

/*==================================================
LEFT CONTENT
==================================================*/

.career-content {
    padding-right: 40px;
}

.career-content h2 {
    margin: 20px 0;
}

.career-content p {
    color: var(--text);
    line-height: 1.9;
    margin-bottom: 35px;
}

.career-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.career-content ul li {
    position: relative;
    padding-left: 38px;
    margin-bottom: 18px;
    color: var(--secondary);
    font-weight: 500;
}

.career-content ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--primary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 700;
}

/*==================================================
FORM CARD
==================================================*/

.career-form-card {
    background: #fff;
    padding: 45px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-md);
}

/*==================================================
FORM ELEMENTS
==================================================*/

.career-form-card .form-control,
.career-form-card .form-select {
    height: 58px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: none;
    padding: 0 18px;
    color: var(--secondary);
    transition: var(--transition);
}
.career-form-card textarea.form-control {
    height: 180px;
    resize: none;
    padding-top: 18px;
}

.career-form-card .form-control:focus,
.career-form-card .form-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(20, 175, 195, .12);
}
.career-form-card .form-control::placeholder {
    color: var(--text-light);
}

/*==================================================
FILE INPUT
==================================================*/

.career-form-card input[type=file] {
    padding: 15px;
    cursor: pointer;
}

.career-form-card input[type=file]::file-selector-button {
    background: var(--primary);
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 6px;
    margin-right: 15px;
    cursor: pointer;
    transition: .3s;
}
.career-form-card input[type=file]::file-selector-button:hover {
    background: var(--primary-dark);
}

/*==================================================
BUTTON
==================================================*/

.career-form-card .btn-theme {
    width: 100%;
    height: 58px;
    border-radius: var(--radius);
    font-size: 16px;
    font-weight: 600;
    transition: var(--transition);
}

.career-form-card .btn-theme:hover {
    transform: translateY(-3px);
}

/*==================================================
OPTIONAL NOTE
==================================================*/

.career-note {
    margin-top: 20px;
    font-size: 14px;
    color: var(--text);
}

.career-note i {
    color: var(--primary);
    margin-right: 6px;
}

/*==================================================
RESPONSIVE
==================================================*/

@media(max-width:1199px) {
    .career-content {
        padding-right: 0;
    }
}

@media(max-width:991px) {
    .career-content {
        margin-bottom: 20px;
    }
}

@media(max-width:767px) {
    .career-form-card {
        padding: 30px 25px;
    }

    .career-content {
        text-align: center;
    }

    .career-content ul li {
        text-align: left;
    }
}

@media(max-width:575px) {
    .career-form-card {
        padding: 25px 20px;
    }

    .career-form-card .form-control,
    .career-form-card .form-select {
        height: 54px;
    }

    .career-form-card textarea.form-control {
        height: 160px;
    }
}