/* Main container */
.career-form {
    display: flex;
    justify-content: center;
    padding: 40px 15px;
}

/* Form box */
.career-row {
    width: 100%;
    max-width: 900px;
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);

    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

/* Half width fields */
.career-col {
    width: calc(50% - 10px);
    display: flex;
    flex-direction: column;
}

/* Full width */
.career-col-full {
    width: 100%;
    display: flex;
    flex-direction: column;
}

/* Labels */
.career-form label {
    font-weight: 600;
    margin-bottom: 5px;
    color: #333;
}

/* Inputs */
.career-input,
.career-textarea {
    padding: 10px 12px;
    border: 1px solid #ccc;
    border-radius: 8px;
    transition: 0.3s;
    font-size: 14px;
}

/* Focus effect */
.career-input:focus,
.career-textarea:focus {
    border-color: #007bff;
    box-shadow: 0 0 6px rgba(0,123,255,0.3);
    outline: none;
}

/* Textarea */
.career-textarea {
    min-height: 100px;
    resize: none;
}

/* Button */
.career-btn {
    background: linear-gradient(45deg, #007bff, #00c6ff);
    color: white;
    border: none;
    padding: 12px 40px;
    border-radius: 25px;
    font-size: 16px;
    cursor: pointer;
    transition: 0.3s;
}

/* Button hover */
.career-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 15px rgba(0,123,255,0.3);
}

/* Responsive */
/*  Tablet View (<= 992px) */
@media (max-width: 992px) {

    .career-row {
        max-width: 95%;  
        padding: 25px;
    }

}


/*  Mobile View (<= 768px) */
@media (max-width: 568px) {

    .career-form {
        padding: 30px 10px;
    }

    .career-row {
        max-width: 100%;   /* full width */
        padding: 20px;
        border-radius: 10px;
    }

    .career-col {
        width: 100%;
    }

}


/*  Small Mobile (<= 480px) */
@media (max-width: 480px) {

    .career-form {
        padding: 20px 8px;
    }

    .career-row {
        padding: 15px;
        gap: 15px;
    }

    .career-btn {
        width: 100%;  
        padding: 12px;
    }
}