body {
    background-color: #F6F9F5;
    margin: 0;
    padding-top: 100px;
}

/* Container */
.career-container {
    display: flex;
    gap: 20px;
    margin-top: 50px;
    padding: 20px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    position: relative; /* Çizginin pozisyonlandırılması için */
}

/* Dikey çizgi */
.career-container::before {
    content: "";
    position: absolute;
    left: 48%;
    top: 0;
    bottom: 0;
    width: 1px;
    background-color: rgba(0, 0, 0, 0.2);
    transform: translateX(-50%);
}

/* Sol Taraf */
.career-left {
    flex: 0 0 45%;
    padding-right: 10px;
}

.career-left h1 {
    text-align: left;
    font-size: 48px;
    margin-bottom: 20px;
    color: #035772;
}

.career-left p {
    text-align: left;
    font-size: 18px;
    line-height: 2;
}

/* Sağ Taraf - Form */
.career-right {
    flex: 0 0 40%;
    padding-left: 20px;
    margin-right: 50px;
    margin-left: 50px;
}

.career-right h3 {
    text-align: center;
    margin-bottom: 30px;
}

/* Form Elemanları */
.form-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}

.form-group {
    flex: 1;
}

.form-group:first-child {
    margin-right: 10px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
}

/* Inputlar için özel stil (Orijinal görünüm) */
input, select, textarea {
    width: 100%;
    padding: 8px 0;
    border: none;
    border-bottom: 2px solid #000;
    background-color: transparent;
    outline: none;
}

/* Dosya Yükleme */
input[type="file"] {
    border-bottom: none;
    padding: 10px 0;
}

/* Buton */
.btn-cvsender {
    width: 100%;
    height: 40px;
    border-radius: 4px;
    background-color: #035772;
    color: white;
    border: none;
    padding: 10px 25px;
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
    transition: background-color 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
}

.btn-cvsender:hover {
    background-color: #023d4a;
}

/* Responsive Düzenlemeler */
@media (max-width: 900px) {
    .career-container {
        flex-direction: column;
        gap: 0;
        margin-top: 20px;
        padding: 10px;
    }
    
    .career-container::before {
        display: none;
    }
    
    .career-left,
    .career-right {
        flex: 1 1 100%;
        max-width: 100%;
        margin: 0;
        padding: 0;
    }
    
    .career-left h1 {
        font-size: 36px;
    }
    
    .career-right {
        margin-top: 30px;
        padding: 20px;
    }
    
    .form-row {
        flex-direction: column;
    }
    
    .form-group:first-child {
        margin-right: 0;
        margin-bottom: 15px;
    }
}