/* ===== Career Expert Fit Profile Form Styles ===== */

.career-fit-form-container {
    background: #fff;
    padding: 25px 35px;
    border-radius: 10px;
    
   
    margin: 30px auto;
   
}

.career-fit-title {
    text-align: center;
    color: #333;
    margin-bottom: 25px;
}

.career-fit-row {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.career-fit-field {
    flex: 1;
    min-width: 45%;
}

.career-fit-field label {
    display: block;
    margin-bottom: 8px;
 
    color: #444;
}

.career-fit-field select {
    width: 100%;
    padding: 12px;
    border-radius: 4px;
    background: #FFF;
    border: none;
    transition: all 0.3s;
    box-shadow: 0 0 0 1px #ddd;
}

.career-fit-field select:focus {
    outline: none;
    box-shadow: 0 0 5px #3F4DCB;
}

.career-fit-submit-container {
    display: flex;
    justify-content: flex-end;
}

.career-fit-submit-btn {
    width: 193px;
    padding: 10px 42px;
    border-radius: 8px;
    background: #3F4DCB;
    color: white;
    border: none;
    cursor: pointer;
    margin-top: 2%;
    margin-left: auto;
    font-weight: bold;
    transition: background 0.3s;
}

.career-fit-submit-btn:hover {
    background: #2D3BB5;
}

.career-fit-result {
    margin-top: 30px;
    background: #e9f7ef;
    padding: 15px;
    border-radius: 8px;
    border: 1px solid #c3e6cb;
}
