/* Apply Job Page Styles */
body {
    margin: 0;
    font-family: "Poppins", sans-serif;
    background: #f5f7ff;
}

.career-apply-section {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    padding: 60px 6%;
    padding-top: 200px;
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
}

/* ---------------- LEFT CONTENT ---------------- */
.left-content {
    flex: 1;
    background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(37, 99, 235, 0.3);
}

.left-content h1 {
    font-size: 2.2rem;
    color: #fff;
    margin-bottom: 25px;
    font-weight: 700;
}

.left-content p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    margin-bottom: 20px;
}

.left-content ul {
    margin-top: 25px;
    padding: 0;
}

.left-content ul li {
    list-style: none;
    font-size: 1rem;
    margin-bottom: 12px;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* ---------------- RIGHT FORM BOX ---------------- */
.apply-form-box {
    flex: 1;
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
}

.apply-form-box h2 {
    margin-bottom: 30px;
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a2e;
    text-align: center;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    font-weight: 500;
    display: block;
    margin-bottom: 8px;
    color: #333;
    font-size: 0.95rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border-radius: 10px;
    border: 2px solid #e0e0e0;
    font-size: 0.95rem;
    outline: none;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
    box-sizing: border-box;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.form-group textarea {
    height: 120px;
    resize: vertical;
}

.form-group input[type="file"] {
    padding: 12px;
    cursor: pointer;
}

/* Submit Button */
.submit-btn {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
    color: #fff;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(37, 99, 235, 0.3);
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.4);
}

/* -------------- RESPONSIVE -------------- */
@media (max-width: 992px) {
    .career-apply-section {
        flex-direction: column;
        padding-top: 150px;
    }

    .left-content,
    .apply-form-box {
        width: 100%;
    }

    .left-content {
        padding: 40px;
    }

    .left-content h1 {
        font-size: 1.8rem;
    }
}

@media (max-width: 768px) {
    .career-apply-section {
        padding-top: 120px;
        padding-left: 20px;
        padding-right: 20px;
        gap: 30px;
    }

    .left-content {
        padding: 30px;
    }

    .left-content h1 {
        font-size: 1.6rem;
    }

    .apply-form-box {
        padding: 30px 25px;
    }

    .apply-form-box h2 {
        font-size: 1.3rem;
    }
}

@media (max-width: 576px) {
    .career-apply-section {
        padding-top: 100px;
    }

    .left-content {
        padding: 25px;
    }

    .left-content h1 {
        font-size: 1.4rem;
    }

    .left-content p,
    .left-content ul li {
        font-size: 0.9rem;
    }

    .apply-form-box {
        padding: 25px 20px;
    }
}
