/* PAGE HEADER */
.header {
    background-image: url(../img/Career/careerBG.png);
    background-repeat: no-repeat;
    background-size: cover;
}

/* CAREER TEXT */
.career-container {
    display: flex;
    justify-content: center;
    margin: 20px auto;
    gap: 100px;
}

.career-desc-container {
    display: flex;
    align-items: center;
    padding: 0 20px;
}

.career-title {
    font-size: clamp(30px, 3vw, 45px);
    font-weight: 700;
    margin: 0;
    color: #50B848;
}

.career-span {
    font-size: clamp(30px, 4vw, 60px);
    color: #275923;
}

.career-text-container {
    width: 100%;
    max-width: 500px;
}

.career-text {
    font-size: clamp(16px, 1.5vw, 19px);
    font-weight: 500;
    text-align: justify;
    margin-top: 15px;
}

.career-form {
    border-radius: 20px;
    padding: 30px;
    width: 100%;
    max-width: 510px;
}

label {
    display: block;
    margin-bottom: 10px;
    font-size: 17px;
    font-weight: 500;
}

.asterik {
    color: red;
}

input,
select {
    border: none;
    border-radius: 10px;
    height: 35px;
    background-color: #ECECEC;
    font-size: 16px;
    max-width: 500px;
    width: 100%;
}

.email,
.number,
.job {
    margin-top: 35px;
}

.submit-button {
    width: 40%;
    display: block;
    margin: 0 auto;
    margin-top: 20px;
    font-size: 17px;
    background-color: #50B848;
    color: white;
    font-weight: 500;
}

@media(max-width:1000px) {
    .career-container {
        gap: 30px;
    }
}

@media(max-width:768px) {
    .career {
        display: flex;
        /* centering */
    }

    .career-container {
        display: block;
    }

    .career-form {
        max-width: 600px;
        width: 100%;
    }
}